1. 程式人生 > >Easyui datagrid 擴展單元格textarea editor

Easyui datagrid 擴展單元格textarea editor

停止 分享 編輯框 環境 end tag 渲染 .data 計算

datagrid 擴展單元格textarea editor

by:授客 QQ:1033553122

測試環境

jquery-easyui-1.5.3

問題描述

如下,在沒有擴展的情況下,初始化如下

技術分享圖片

手動拖拽,拖拽時一邊往右側拖拽,結果如下,上圖那個拖拽圖標被隱藏了。停止拖拽後無法再次拖拽

技術分享圖片

解決方案

擴展textarea 編輯器

函數說明

函數 參數 描述

init container, options 初始化編輯器並且返回目標對象。

destroy target 如果必要就銷毀編輯器。

getValue target 從編輯器中獲取值

setValue target , value 給編輯器設置值。

resize target , width 如果必要就調整編輯器的尺寸。

代碼實現

// 擴展textarea編輯器,以控制“拖拽”行為等

$.extend($.fn.datagrid.defaults.editors, {

textarea: { // 調用名稱

init : function(container, options) {

//container 用於裝載編輯器 options,提供編輯器初始參數

//這裏把一個渲染成easyui-editable-input的textarea輸入控件添加到容器container中,

//需要時用傳入options, 這樣調用 input.textarea(options)

var input = $(‘<textarea class="datagrid-editable-input" style="resize:vertical;height:200px"></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);

//Query.boxModel屬性用於檢測瀏覽器是否使用標準盒模型渲染當前頁面。標準模式返回true,否則返回false。

if ($.boxModel == true) {

input.width(width - (input.outerWidth() - input.width()) - 10);

} else {

input.width(width-10);

}

}

}

});

在定義表格thead時引用編輯器

<th data-options="field:‘request_header‘, align: ‘left‘, editor:{type:‘textarea‘}, styler:setCellStyle" width="350px">請求頭</th>

說明:width - 10 是為了讓拖拽後,還顯示下圖圈選的拖拽圖標,如果不減去個適當的寬度,形如width - (input.outerWidth() - input.width()),那麽拖拽後,將看不到拖拽標識。

技術分享圖片

style="resize:vertical;height:200px" 設置拖拽只能縱向拖拽(如果支持橫向拖拽則依舊會出現拖拽標識被隱藏,停止拖拽後無法再次拖拽的情況),默認編輯框高度 200px,如下高度

技術分享圖片

resize 可選值:

none 用戶無法調整元素的尺寸。

both 用戶可調整元素的高度和寬度。

horizontal 用戶可調整元素的寬度。

vertical 用戶可調整元素的高度

關於寬度的計算結果值,參考下圖

技術分享圖片

參考鏈接:

http://www.w3school.com.cn/cssref/pr_resize.asp

https://www.cnblogs.com/yfrs/p/4980934.html

https://www.oschina.net/code/snippet_571282_34699

Easyui datagrid 擴展單元格textarea editor