123456789101112131415161718192021222324252627282930313233 |
- //刷新
- function reload() {
- $("#dgSpecialtyNoAddList").cmsXDataTable("load", $.getDataGridParams("dgSpecialtyNoAddList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgSpecialtyNoAddList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.SpecialtyID);
- });
- return d;
- }
- //确定生成成功后不关闭弹出页面
- function formSuccessReloadNoClose(data) {
- if (data.IsSuccess == true) {
- reload();
- }
- $.messager.alert("系统提示", data.Message);
- }
- //确定
- function SpecialtyClassSettingBatchAdd_Confirm() {
- var d = validChoose();
- if (d == "") {
- $.messager.alert("系统提示", "请选择您要新增的专业信息。");
- return;
- }
- $("#specialtyIDs").val(JSON.stringify(d));
- $(document.forms[0]).submit();
- }
|