1

セルクリックを処理する方法を探しています。この方法でグリッドに新しい列を作成する場合の方法:

column = new ColumnConfig();
column.setId("remove");
column.setHeader("Remove");
column.setWidth(100);        
configs.add(column);

?

4

1 に答える 1

1

ColumnConfigが属するグリッドでセルのクリックを処理する必要があります。たとえば、 があるとしますGrid grid = new Grid(new ColumnModel(column));

grid.addListener(Events.CellDoubleClick, new Listener<GridEvent>() {
    public void handleEvent(GridEvent be) {
        // be.getColIndex() gets the index of the column clicked on.
        // if you know the index of `column`, you can compare that number to the colIndex
        // if the numbers are equal, do whatever you want to do
        // see docs for GridEvent at 
        // http://dev.sencha.com/deploy/gxt-2.2.5/docs/api/com/extjs/gxt/ui/client/event/GridEvent.html
    }
});
于 2013-06-19T13:12:05.273 に答える