Set focus on Extjs textfield

后端 未结 11 1668
星月不相逢
星月不相逢 2020-12-31 02:02

Currently I got problem with setting focus on extjs textfield. When form show, I want to set focus to First name text box and I try to use build in function focus() but stil

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-31 02:21

    UIManager.SetFocusTo = function (row, column) {
        var grd = Ext.getCmp('gridgrn');
        grd.editingPlugin.startEditByPosition({ 'column': column, 'row': row });
    
    }
    

提交回复
热议问题