Package com.gwtext.client.widgets.grid

Examples of com.gwtext.client.widgets.grid.GridPanel


              }
            });
          }
        } });

    final GridPanel g = new GridPanel(store,cm);
    g.setWidth(800);
    g.setHeight(600);

    Toolbar tb = new Toolbar();
    g.setTopToolbar(tb);

    tb.addItem(new ToolbarTextItem(
                constants.ShowRecentLogTip()));
    tb.addItem(new ToolbarSeparator());
View Full Code Here


            }
        }} );

        //Grid g = new Grid(Ext.generateId(), "600px", "300px", store, cm);
        GridPanel g = new GridPanel( store,
                                     cm );
        g.setWidth( 600 );
        g.setHeight( 300 );

        g.addGridRowListener( new GridRowListenerAdapter() {
            public void onRowDblClick(GridPanel grid,
                                      int rowIndex,
                                      EventObject e) {
                if ( !grid.getSelectionModel().getSelected().getAsString( "assetFormat" ).equals( "Package" ) ) { //NON-NLS
                    String uuid = grid.getSelectionModel().getSelected().getAsString( "uuid" ); //NON-NLS
View Full Code Here

                setDataIndex( "right" ); //NON-NLS
                setWidth( 200 );
            }
        }} );

        final GridPanel g = new GridPanel( store,
                                           cm );

        g.addGridRowListener( new GridRowListenerAdapter() {
            public void onRowDblClick(GridPanel grid,
                                      int rowIndex,
                                      EventObject e) {
                String uuid = grid.getSelectionModel().getSelected().getAsString( "uuid" ); //NON-NLS
                centerPanel.openAsset( uuid );
            }
        } );

        g.setWidth( 800 );
        g.setHeight( 600 );

        return g;
    }
View Full Code Here

             }   
         });

        store.load();

        final GridPanel grid = new GridPanel( store,
                                              cm );
        grid.setStripeRows( true );

        grid.addGridColumnListener( new GridColumnListener() {
            public void onColumnMove(GridPanel grid,
                                     int oldIndex,
                                     int newIndex) {

                if ( DecisionTableHandler.validateMove( dt,
                                                        oldIndex,
                                                        newIndex ) ) {

                    // Save any changes to the dt.data.
                    scrapeData( -1 );

                    DecisionTableHandler.moveColumn( dt,
                                                     oldIndex,
                                                     newIndex );

                    grid = doGrid();

                } else {
                    // Refresh undoes the move.
                    refreshGrid();
                    ErrorPopup.showMessage( constants.CanNotMoveColumnsFromOneTypeGroupToAnother() );
                }
            }

            public void onColumnResize(GridPanel grid,
                                       int colIndex,
                                       int newSize) {
                // Nothing
            }
        } );

        GroupingView gv = new GroupingView();

        //to stretch it out
        gv.setForceFit( true );
        gv.setGroupTextTpl( "{text} ({[values.rs.length]} {[values.rs.length > 1 ? \"" //NON-NLS
                            + constants.Items() + "\" : \"" + constants.Item() + "\"]})" );

        grid.setView( gv );

        grid.setStore( store );

        int width = 900;
        if ( cm.getColumnCount() > 10 ) {
            width = 900 + (90 * (cm.getColumnCount() - 10));
        }
        grid.setWidth( width );
        grid.setHeight( 500 );

        //Add the cell listener for when the user wants to edit.
        grid.addGridCellListener( new GridCellListenerAdapter() {
            public void onCellDblClick(GridPanel grid,
                                       int rowIndex,
                                       int colIndex,
                                       EventObject e) {

                final String dataIdx = grid.getColumnModel().getDataIndex( colIndex );
                final Record r = store.getAt( rowIndex );
                String val = r.getAsString( dataIdx );
                DTColumnConfig colConf = colMap.get( dataIdx );
                String[] vals = dt.getValueList( colConf,
                                                 getSCE() );
                if ( vals.length == 0 ) {
                    showTextEditor( e,
                                    dataIdx,
                                    r,
                                    val,
                                    colConf );
                } else {
                    showDropDownEditor( e,
                                        dataIdx,
                                        r,
                                        val,
                                        vals );
                }
            }

        } );

        //remember any size changes
        grid.addGridColumnListener( new GridColumnListenerAdapter() {
            public void onColumnResize(GridPanel grid,
                                       int colIndex,
                                       int newSize) {
                final String dta = grid.getColumnModel().getDataIndex( colIndex );
                if ( dta.equals( "desc" ) ) { //NON-NLS
                    dt.descriptionWidth = newSize;
                } else {
                    if ( colMap.containsKey( dta ) ) {
                        DTColumnConfig col = colMap.get( dta );
View Full Code Here

            + (checked ? "checked.gif" : "unchecked.gif") + "\"/>";
      }
    });

    this.identityStore = new IdentityStore();
    this.gridPanel = new GridPanel(this.identityStore, columnModel);

    Toolbar toolbar = new Toolbar();
    toolbar.addButton(new ToolbarButton(TextProvider.get().identities_panel_new_identity(),
        new ButtonListenerAdapter() {
View Full Code Here

  
   * @param jsObj the JavaScript object representing {@code GridPanel} that was returner from RowActionPlugin.
   * @return {@code GridPanel}
   */
  private static GridPanel createGrid(JavaScriptObject jsObj){
    return new GridPanel(jsObj);
  }
View Full Code Here

  
   * @param jsObj the JavaScript object representing {@code GridPanel} that was returner from GroupRowActionPlugin.
   * @return {@code GridPanel}
   */
  private static GridPanel createGrid(JavaScriptObject jsObj){
    return new GridPanel(jsObj);
  }
View Full Code Here

    this.gridPanelWrapper = new Panel();
    this.gridPanelWrapper.setBorder( false );
    this.gridPanelWrapper.setFrame( false );
    this.gridPanelWrapper.setLayout( new BorderLayout() );

    this.gridPanel = new GridPanel();
    this.gridPanel.setBorder( false );
    this.gridPanel.setFrame( false );
    this.gridPanel.setColumnModel( this.columnModel );
    this.gridPanel.setStripeRows( true );
    this.gridPanel.getSelectionModel().addListener( new MessageGridRowSelectionListener() );
View Full Code Here

  
   * @param jsObj the JavaScript object representing {@code GridPanel} that was returner from GridCellActionPlugin.
   * @return {@code GridPanel}
   */
  private static GridPanel createGrid(JavaScriptObject jsObj){
    return new GridPanel(jsObj);
  }
View Full Code Here

    this.contactListProxy = new ContactListProxy();
    this.store = new Store( this.contactListProxy, new ArrayReader( ContactListFields.ID.ordinal(), RECORD_DEF ),
        true );
    this.store.setSortInfo( new SortState( ContactListFields.DISPLAY_NAME.name(), SortDir.ASC ) );

    this.gridPanel = new GridPanel( this.store, COLUMN_MODEL );

    GridSearchPlugin plugin = new GridSearchPlugin( GridSearchPlugin.TOP );
    plugin.setMode( MessageQuickSearchPlugin.LOCAL );
    this.gridPanel.setTopToolbar( createToolbar() );
    this.gridPanel.addPlugin( plugin );
View Full Code Here

TOP

Related Classes of com.gwtext.client.widgets.grid.GridPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.