123456789101112131415161718192021222324252627 |
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- $("#txtConfirmNo").keyup(function (ev) {
- if (ev.keyCode == 13) {
- reload();
- }
- });
- })
- function reload() {
- $("#dgStudentFeeDetailList").cmsXDataTable("load", $.getDataGridParams("dgStudentFeeDetailList"));
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/StudentFee/StudentFeeTotal', { examinationRegistConfirmNo: $("#txtConfirmNo").val() }, function (data) {
- $("#txtTotal").text("");
- if (data) {
- $("#txtTotal").text(parseFloat(data).toFixed(2));
- }
- });
- }
- function StudentFee_Print() {
- var total = $("#txtTotal").text();
- if (total != "") {
- $("#frmPrintDetail").attr("src", CMS_SystemConfig.VirtualDirectoryPath + '/StudentFee/PrintDetailGDCX?examinationRegistConfirmNo=' + $("#txtConfirmNo").val());
- }
- }
|