修改应用管理选择框没有选中的问题
This commit is contained in:
@@ -425,13 +425,13 @@
|
|||||||
$("#URL").val(rowsdata.url);
|
$("#URL").val(rowsdata.url);
|
||||||
$("#Width").val(rowsdata.width);
|
$("#Width").val(rowsdata.width);
|
||||||
$("#Height").val(rowsdata.height);
|
$("#Height").val(rowsdata.height);
|
||||||
$("#ReSize").attr("checked", rowsdata.resize == 'true' ? true : false);
|
$("#ReSize").attr("checked", rowsdata.resize === true ? true : false);
|
||||||
$("#OpenMax").attr("checked", rowsdata.openmax == 'true' ? true : false);
|
$("#OpenMax").attr("checked", rowsdata.openmax === true ? true : false);
|
||||||
$("#Flash").attr("checked", rowsdata.flash == 'true' ? true : false);
|
$("#Flash").attr("checked", rowsdata.flash === true ? true : false);
|
||||||
$("#ZL").val(rowsdata.zl);
|
$("#ZL").val(rowsdata.zl);
|
||||||
$("#Sort").val(rowsdata.sort);
|
$("#Sort").val(rowsdata.sort);
|
||||||
$("#Remark").val(rowsdata.remark);
|
$("#Remark").val(rowsdata.remark);
|
||||||
$("#Enabled").attr("checked", rowsdata.enabled == 'true' ? true : false);
|
$("#Enabled").attr("checked", rowsdata.enabled === true ? true : false);
|
||||||
|
|
||||||
orgApp = rowsdata.name;
|
orgApp = rowsdata.name;
|
||||||
$('#appDlg').dialog('open').dialog('setTitle', '<img src="/js/easyui-1.3.5/themes/icons/pencil.png"/> 编辑应用信息');
|
$('#appDlg').dialog('open').dialog('setTitle', '<img src="/js/easyui-1.3.5/themes/icons/pencil.png"/> 编辑应用信息');
|
||||||
|
|||||||
Reference in New Issue
Block a user