- 注册时间
- 2021-5-18
- 最后登录
- 2024-11-14
- 阅读权限
- 10
- 积分
- 208
- 精华
- 0
- 帖子
- 17
|
这样设置下拉框后重新设置下拉框可以修改,但是无法选择下拉框弹出的值.
var controls = mini.findControls(function (control) {
if (control.type == "textbox"
|| control.type == "listbox"
|| control.type == "combobox"
|| control.type == "checkboxlist"
|| control.type == "datepicker"
|| control.type == "textboxlist") return true;
})
$.each(controls, function (i, v) {
v.setEnabled(false);
});if (doctorUpdateEnable == "N")
{
mini.getByName("empId").setEnabled(true);
mini.getByName("teamId").setEnabled(true);
}
|
|