EasyUi 小技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EasyUi 小技巧相关的知识,希望对你有一定的参考价值。

  • 扩展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 小技巧的主要内容,如果未能解决你的问题,请参考以下文章

EasyUi 小技巧

easyUI小技巧-纯干货

提效小技巧——记录那些不常用的代码片段

zoho在线文档使用小技巧

Jquery 小技巧

easyui的学习总结