1. 程式人生 > >EasyUi 小技巧

EasyUi 小技巧

動態 appendto ons ret mbo value opened div ext

  • 擴展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 小技巧