• EasyUI常用控件禁用方法


    来自:http://blog.csdn.net/jin_guang/article/details/36905387 特此感谢




    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:Google三剑客
    lintcode亚麻九题
    设计模式17:单例模式
    设计模式16:迭代器模式
    设计模式15:组合模式
    476. Number Complement
    561. Array Partition I
    627. Swap Salary
    617. Merge Two Binary Trees
    728. Self Dividing Numbers
  • 原文地址:https://www.cnblogs.com/ZJ0065/p/9161668.html
Copyright © 2020-2023  润新知