EasyUI常用控制項禁用方法

來源:互聯網
上載者:User

標籤:for   應用   app   ui   text   re   

EasyUI常用控制項禁用方法:


1.validatebox可以用的用法:前兩種適用於單個的validatebox;
  第三種應用於整個form裡面的輸入框;  


 <1>.$("#id").attr("readonly", true); -----  $("#id").removeAttr("readonly");
 <2>.$("#id").attr("readonly", "readonly"); -----  $("#id").removeAttr("readonly");
 <3>.$("#Form :input").attr("readonly", "readonly"); //對form裡面的禁用
 <4>.$("input").attr("readonly", "readonly"); //對所有的input標籤禁用


2.combobox禁用啟用用法:


 <1>.$("#id").combobox({ disabled: true }); -----  $("#id").combobox({ disabled: false});
 <2>.$("#id").attr("readonly", "readonly");  //對單個禁用   -----  $("#id").removeAttr("readonly");
 <3>.$("#fm .easyui-combobox").combobox({ disabled: true });  //對form裡面的下拉框禁用
 <4>.$("#ID").combobox("disable"); ------ $("#ID").combobox("enable");


3.datebox與datetimebox禁用啟用方法:


 <1>.$("#fm .easyui-datebox").datebox({ disabled: true }); -----  $("#fm .easyui-datebox").datebox({ disabled: false});
 <2>.$("#id").attr("readonly", "readonly");  -----  $("#id").removeAttr("readonly");
 <3>.$("#fm .easyui-datetimebox").datetimebox({ disabled: true }); ----- $("#fm .easyui-datetimebox").datetimebox({ disabled: true });
 
4.combogrid禁用啟用方法:
 <1>.$("#FPayApplySupAccountID").combogrid("disable"); ----- $("#FPayApplySupAccountID").combogrid("enable");




5.lable標籤ID附加文字:
 <1>.$("#id").text("標題:"); //此方法可以屏蔽掉lable標籤內的文字
             

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.