ExtJS中的突出显示/选择网格行

问题描述 投票:7回答:4

我是Ext JS的新手。我正在网格面板上工作,在该面板中,当我选择/单击任何行时,与选定行相关的某些数据将显示在网格下方的面板中。同样,在加载窗口时,默认情况下应选择/突出显示第一个窗口。当前,网格和面板显示正确。即使与所选行相关的数据也显示在面板中,但该行未突出显示。我已经尝试过grid.focusRow(0)grid.getRow(0).highlight()方法,但是它们不起作用。下面是我的代码。

//the js file code
initComponent : function() { //within the window instance

    var single = false;
    var store = new Ext.data.XmlStore({//all necessary fields added}); //store
    HttpUtil.syncCall(this.url, "GET", this.loadStore, store,this);
    var acctTplMarkup = [//the fields here are displayed on row selection ];
                /*The template for displaying the details of the selected row */
                 this.acctTpl = new Ext.Template(acctTplMarkup);
    //check for request type, if type is range of checks create the grid
    if (single == false) {
        var gridView = new Ext.grid.GridView();
        var colModel = new Ext.grid.ColumnModel([ {
            header : 'Status',
            dataIndex : 'status'
        }, {
            header : 'Message',
            dataIndex : 'message'
        } ]);
        var selModel = new Ext.grid.RowSelectionModel({
            singleSelect : true
        });
        grid = new Ext.grid.GridPanel({
                                          ...
                        listeners : {
                render : function(grid) {
                    Ext.getCmp('check').store.on('load',function(store, records, options) { //check is the id value for the window instance
                         grid.getSelectionModel().selectFirstRow(); 
                    });
                }
            }
    }); //gridPanel
    } //if
    /* If request type is range select then display the grid  */
                ... 
    if (single == false) {
    grid.getSelectionModel().on('rowselect', function(sm, rowIdx, r) {
Ext.getCmp('check').acctTpl.overwrite(Ext.getCmp('detailPanel').body, r.data);
        }); //rowselect
    } //if

    Ext.apply(this, {
                                     ...
            listeners : {
            'afterrender' : function(){
            Ext.getCmp('check').acctTpl.overwrite(Ext.getCmp('detailPanel').body, this.store.getAt(0).data,true);
            }
        }
    });
    Check.superclass.initComponent.apply(this, arguments);

}, //initComponent

来自数据存储区的数据已正确加载并显示,但只有该行未突出显示。谁能告诉我我哪里出错了?

javascript extjs grid
4个回答
11
投票
要突出显示行,您应该执行以下操作:

var row = grid.getView().getRow(0); // Getting HtmlElement here Ext.get(row).highlight(); // Getting element wrapper and using its "highlight" method

要执行行选择,您正在使用网格的SelectionModel:

grid.getSelectionModel().selectRow(0)

6
投票
Ext.grid.Panel

版本:4.0.0

要选择一项并删除先前的选择:

grid.getSelectionModel().select(0);

要选择一项并保留以前的选择:

grid.getSelectionModel().select(0, true);

1
投票
Ext.grid.GridPanel.getView().getSelectionModel().select(index);

© www.soinside.com 2019 - 2024. All rights reserved.