123456789101112131415161718192021 |
-
- function reload() {
- $("#dgTMPoolList").cmsXDataTable("load", $.getDataGridParams("dgTMPoolList"));
- }
- function DiscountChange(rowindex, rowdata) {
- var DiscountPrice = (Number(rowdata.Price * rowdata.Discount)).toFixed(2)
- $("#dgTMPoolList").cmsXDataTable("setDataValueByIndex", { rowIndex: rowindex, columnName: "DiscountPrice", newValue: DiscountPrice });
- var tableRow = $('#dgTMPoolList').find("tr.row[xRowIndex=" + rowindex + "]");
- $(tableRow.find("td")[5]).children().val(DiscountPrice); //设置折合价
- }
- function QueryTeachingMaterialDropdownList(data) {
- reload();
- }
- function QueryCourseDropdownList(data) {
- reload();
- }
|