onClickRow : function(rowIndex, rowData){
var editor = $('#datagrid').datagrid('getEditor', {index:rowIndex,field:"buyNum"});
editor.target.focus();
}
點選一行,開啟編輯框的同時,將遊標放在編輯框中。
rowIndex:是開啟編輯框這行目前頁的行索引,從0開始;
buyNum:是開啟編輯框的欄位的名字。
以上就是個人總結的一個小技巧,希望大家能夠喜歡。