jQuery EasyUI DataGrid API 中文文档

2020-12-13 03:47

阅读:352

1.  $.extend($.fn.datagrid.defaults.editors, {   

2.      text: {   

3.          init: function(container, options){   

4.              var input = $().appendTo(container);   

5.              return input;   

6.          },   

7.          getValue: function(target){   

8.              return $(target).val();   

9.          },   

10.        setValue: function(target, value){   

11.            $(target).val(value);   

12.        },   

13.        resize: function(target, width){   

14.            var input = $(target);   

15.            if ($.boxModel == true){   

16.                input.width(width - (input.outerWidth() - input.width()));   

17.            } else {   

18.                input.width(width);   

19.            }   

20.        }   

21.    }   

22.});  


评论


亲,登录后才可以留言!