jQuery EasyUI DataGrid API 中文文档
2020-12-13 03:47
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.});
下一篇:js获取网页的各种高度
文章标题:jQuery EasyUI DataGrid API 中文文档
文章链接:http://soscw.com/essay/28281.html