iDialog单独使用显示不全

提问 未结 4 8288
悬赏:20飞吻
$("#disconnect_order").on('click',function(){
var $editDialog = $('#disconnectOrderForm');
$editDialog.iDialog({
title: '编辑数据',
width: 950,
height: 500,
closed: false,
cache: false,
href: '<{:url("disconnect_order")}>',
modal: true,
buttons: [{
text: '保存',
iconCls: 'fa fa-save',
btnCls: 'topjui-btn-blue',
handler: function () {
// 提示信息
$.iMessager.alert('操作提示', '请根据具体情况编写代码,如ajax更新请求,请求失败提示,请求成功提示,请求成功后关闭窗口并刷新表格等!', 'messager-info');
}
}, {
text: '关闭',
iconCls: 'fa fa-close',
btnCls: 'topjui-btn-red',
handler: function () {
$editDialog.iDialog('close');
}
}]
// onLoad: function () {
// //加载表单数据
// $.getJSON(_ctx + '/json/product/detail.json?uuid=', function (data) {
// $editDialog.form('load', data);
// });
// }
});
});
回帖
回帖须知