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); } } });
-
以上是关于EasyUi 小技巧的主要内容,如果未能解决你的问题,请参考以下文章