秋大,好。
新增用户时,将账户状态默认设置为“启用”
更新前,我是在onload事件中设置的,如下:
代码更新后就不行了,
请问:这里该如何设置呢?
因为下拉的绑定已经从同步变为异步,所以需要在异步回调后才参设值,下拉的Demo里有示例代码如下:
AR.Combobox.onAfterExecute = function (type) { if (type == "configkey") { AR.Combobox.setValues({ geder: 1 }); } else { AR.Combobox.setValues({ unshowid: "河东区" }); } alert(type); }
可以了。
<script type="text/javascript">
AR.Combobox.onAfterExecute = function (type) {
if (type == "configkey") {
if (parent.AR.Global.operator == 'Add') {
AR.Combobox.setValues({ Status: 1 });
}
}
}
</script>