码迷,mamicode.com
首页 > 其他好文 > 详细

EasyUi 小技巧

时间:2017-05-18 09:50:49      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:log   display   logs   set   end   jquer   技巧   edit   val   

  • 扩展datagrid:动态添加删除editor

    • 技术分享
      //扩展datagrid:动态添加删除editor
      jQuery.extend(jQuery.fn.datagrid.defaults.editors, {
          combotree : {
              init : function(container, options) {
                  var editor = jQuery(‘<input type="text">‘).appendTo(container);
                  editor.combotree(options);
                  return editor;
              },
              destroy : function(target) {
                  jQuery(target).combotree(‘destroy‘);
              },
              getValue : function(target) {
                  var temp = jQuery(target).combotree(‘getValues‘);
                  return temp.join(‘-‘);
              },
              setValue : function(target, value) {
                  if (value) {
                      var temp = value.split(‘-‘);
                      jQuery(target).combotree(‘setValues‘, temp);
                  }
              },
              resize : function(target, width) {
                  jQuery(target).combotree(‘resize‘, width);
              }
          }
      });
      扩展datagrid:动态添加删除editor

       

EasyUi 小技巧

标签:log   display   logs   set   end   jquer   技巧   edit   val   

原文地址:http://www.cnblogs.com/gcjava/p/6871622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!