easyui select combobox 的disable属性

对于单纯的select,可以用disabled属性让其变成灰色不可选状态,用一下方法让其恢复可选:

$("#roleSelector").removeAttr("disabled");

但让其变为easyui的combobox后,就不能这样用了
class="easyui-combobox"

	

修改其值的方法如下

$(function(){
		$("input[name='userInfo.admin']").click(function(){
			var flag = $("input[name='userInfo.admin']:checked").val();
			//$("#roleSelector").removeAttr("disabled");  //this method can not work
			if(flag=='true'){         //if this is admin,then roleSelect open ,otherwise it closed
				$("#roleSelector").combobox({
					disabled:false
				});
			}else{
				$("#roleSelector").combobox({
					disabled:true
				});
			}
			
			
		})
	})

修改方法:

$("#roleSelector").combobox({
					disabled:false
				});


你可能感兴趣的:(easyui)