Ext GridPanel选定默认行
1、Coolite V0.82
GridPanel.getSelectionModel().selectRow(0);
2、Ext.Net V1.0
RowSelectionModel sm = GridPanel.SelectionModel.Primary as RowSelectionModel;
sm.SelectedRows.Add(new SelectedRow(0));
1、Coolite V0.82
GridPanel.getSelectionModel().selectRow(0);
2、Ext.Net V1.0
RowSelectionModel sm = GridPanel.SelectionModel.Primary as RowSelectionModel;
sm.SelectedRows.Add(new SelectedRow(0));