Commit 7fed6abb authored by qiankunpingtai's avatar qiankunpingtai
Browse files

修改应用管理选择框没有选中的问题

parent b932a154
...@@ -425,13 +425,13 @@ ...@@ -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"/>&nbsp;编辑应用信息'); $('#appDlg').dialog('open').dialog('setTitle', '<img src="/js/easyui-1.3.5/themes/icons/pencil.png"/>&nbsp;编辑应用信息');
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment