com.vaadin.client.connectors.grid.

Class AbstractGridRendererConnector<T>

    • Constructor Detail

      • AbstractGridRendererConnector

        public AbstractGridRendererConnector()
    • Method Detail

      • getRowKey

        protected String getRowKey​(elemental.json.JsonObject row)

        Gets the row key for a row object.

        In case this renderer wants be able to identify a row in such a way that the server also understands it, the row key is used for that. Rows are identified by unified keys between the client and the server.

        Parameters:

        row - the row object

        Returns:

        the row key for the given row

      • getColumnId

        protected String getColumnId​(Grid.Column<?,​elemental.json.JsonObject> column)

        Gets the column id for a column.

        In case this renderer wants be able to identify a column in such a way that the server also understands it, the column id is used for that. Columns are identified by unified ids between the client and the server.

        Parameters:

        column - the column object

        Returns:

        the column id for the given column

      • getGridConnector

        protected GridConnector getGridConnector()

        Gets the grid connector for this renderer connector.

        Returns:

        the parent grid connector.