easyui datagrid的文本编辑器textarea都有哪些配置项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui datagrid的文本编辑器textarea都有哪些配置项相关的知识,希望对你有一定的参考价值。
参考技术A 配置Textarea不可拖动变大变小:只能自己扩展 textarea 才能实现配置不用修改,直接扩展就行
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');
//alert(temp);
return temp.join(',');
,
setValue: function(target, value)
var temp = value.split(',');
//alert(temp);
jQuery(target).combotree('setValues', temp);
,
resize: function(target, width)
jQuery(target).combotree('resize', width);
,
textarea:
init : function(container, options)
var input = $(
'<textarea class="datagrid-editable-input" style="resize:none;"></textarea>')
.appendTo(container);
return input;
,
getValue : function(target)
return $(target).val();
,
setValue : function(target, value)
$(target).val(value);
,
resize : function(target, width)
var input = $(target);
if ($.boxModel == true)
input.width(width - (input.outerWidth() - input.width()));
else
input.width(width);
);本回答被提问者和网友采纳
以上是关于easyui datagrid的文本编辑器textarea都有哪些配置项的主要内容,如果未能解决你的问题,请参考以下文章
easyui DataGrid中editor的文本内容如何控制居右
easyui问题,怎样获取datagrid中编辑列combobox的value值与text值