EasyUI Forum
May 01, 2024, 08:12:12 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Re: Disable entire form on: July 13, 2017, 07:37:01 AM
This is a little hacky, but it's how I did it. I have a bunch of forms that I wanted to force the user to unlock in order to edit (to prevent accidental edits). The gist of it is using jquery.find to loop through a collection of DOM elements with the selector and call a function on them.

This is the function that the form onLoad calls to make sure all the field elements are disabled initially:

Code:
function disableForm(which) {
    var form = $('#' + which + '_Form');
    var btn = $('#' + which + '_Toggle');
    var lock = $('#' + which + '_Locked');
    btn.linkbutton({
        text: 'Unlock <span class="offset-up" uk-icon="icon:lock"></span>'
    });
    lock.val(1);
    form.find('.easyui-textbox').each(function() {
        $(this).textbox('readonly', true);
    });
    form.find('.easyui-combobox').each(function() {
        $(this).combobox('readonly', true)
    });
    form.find('.easyui-datebox').each(function() {
        $(this).datebox('readonly', true)
    });
    form.find('.easyui-numberbox').each(function() {
        $(this).numberbox('readonly', true)
    });
}
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!