1. 程式人生 > >MINIUI checkboxlist 設置某項默認不可修改

MINIUI checkboxlist 設置某項默認不可修改

show -o inf clas com split data- set 公告

<div role="row">
<div role="control" label="公告其他屬性 ">
<div id="otherattib" bind="dataBean.otherattib" action="CodeItems(‘公告其他屬性‘)" class="mini-checkboxlist" onvaluechanged="getValue()"
data-options="{‘split‘:‘,;‘}"></div>
</div>
</div>

<!--js-->

function getValue() {
var obj = mini.get("otherattib");
var val = obj.getValue();
if (val.indexOf("6") >= 0) {
$("#unionshow").show();
} else {
$("#unionshow").hide();
mini.get("uniondanweirequest").setValue("");
}
if(val.indexOf("3") < 0){
mini.get("otherattib").setValue(val+",3");
}if(val.indexOf("7") < 0){
mini.get("otherattib").setValue(val+",7");
}
}

效果

技術分享圖片

MINIUI checkboxlist 設置某項默認不可修改