EasyUI中datagrid控制元件的Editor
阿新 • • 發佈:2019-02-15
http://www.jeasyui.com/documentation/index.php#editor
datagrid中的Editor
Editor功能:支援行內編輯、修改列引數。
每個Editor支援如下方法:
方法 |
引數 |
說明 |
init |
container, options |
初始化editor並返還目標物件 |
destroy |
target |
銷燬editor |
getValue |
target |
從editor text中讀取值 |
setValue |
target , value |
設定editor值 |
resize |
target , width |
調整editor大小 |
datagrid支援的Editor方法:
方法 |
引數 |
說明 |
getEditors |
index |
獲取一行(index)中所有Editors,返回一個Editor陣列。 每個editor有如下屬性: actions: 該editor支援的操作(同上表) target: 目標editor的jQuery物件 field: 該列的field值 type: editor 型別,比如 'text','combobox','datebox'。 |
getEditor |
options |
獲取一行(index)中指定field的Editor,返回一個Editor index: 行索引值. 例子: // get the datebox editor and change its value var ed = $('#dg').datagrid('getEditor', {index:1,field:'birthday'}); $(ed.target).datebox('setValue', '5/4/2012'); |