当前位置: 首页 > 工具软件 > Yi Editor > 使用案例 >

easyui编辑editor

冷涵忍
2023-12-01
$.extend($.fn.datagrid.defaults.editors, {
textarea: {
init: function(container, options){
var input = $('<input type="text" class="datagrid-editable-input" οnclick="showclob(this);">').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);
}
}
}
});

转载于:https://www.cnblogs.com/zhuyeshen/p/10956507.html

 类似资料: