1. 程式人生 > >EasyUI中datagrid控制元件的Editor

EasyUI中datagrid控制元件的Editor

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: 目標editorjQuery物件

field: 該列的field

type: editor 型別,比如 'text','combobox','datebox'

getEditor

options

獲取一行(index)中指定fieldEditor,返回一個Editor

物件。引數options物件有如下屬性:

index: 行索引值.
field:
field

例子:

// get the datebox editor and change its value

var ed = $('#dg').datagrid('getEditor', {index:1,field:'birthday'});

$(ed.target).datebox('setValue', '5/4/2012');