EasyUI Forum
September 13, 2025, 08:35:57 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 / Bug Report / Bug: datagrid's method selectRow - jquery easyui 1.4.1 on: November 24, 2014, 08:29:57 PM
jquery-easyui.1.4.1-min.js
line 9985:

        if (opts.idField) {
            _56d(_652.selectedRows, opts.idField, row);
        }

应该 加入 对row 的判断,即
        if (opts.idField && row) {
            _56d(_652.selectedRows, opts.idField, row);
        }


line 10062: 
  if (opts.idField) {
            _56d(_668.checkedRows, opts.idField, row);
        }

也要加入 对row 的判断


2  General Category / EasyUI for jQuery / How it working with AngularJS ? on: November 03, 2014, 05:47:56 AM
Can you write a example for us ?

3  General Category / Bug Report / Re: about combobox when disabled CSS on: September 28, 2014, 07:48:48 PM
 var plugins = [
        'combo','combobox','combotree','combogrid','datebox','datetimebox',
        'datetimespinner','numberbox','numberspinner','timespinner','filebox',
        'searchbox','textbox'
    ];

    (function(ctrls){
        $.each(ctrls,function() {
            $.extend($.fn[this].defaults,{
                height:26,
                iconWidth:20
            });

            var disableFn = $.fn[this].methods.disable;
            if(disableFn){
                $.extend($.fn[this].methods,{
                    disable: function(jq){
                        disableFn(jq);
                        $(jq).next().addClass('aaaaa');
                    }
                });
            }
        });
    })(plugins);

   
  //=============================





4  General Category / Bug Report / about combobox when disabled CSS on: September 28, 2014, 07:11:07 PM
the combobox plugin when disabled, the arrow on mouse over ,it's backgrond changed.

How add new css class to combobox when disabled ?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!