Interface ICellPopulator<T>

    • Method Detail

      • populateItem

        void populateItem​(Item<ICellPopulator<T>> cellItem,
                          String componentId,
                          IModel<T> rowModel)
        Method used to populate a cell in the DataGridView Implementation MUST add a component to the cellItem using the component id provided by componentId argument, otherwise a WicketRuntimeException will be thrown
        Parameters:
        cellItem - the item representing the current table cell being rendered
        componentId - the id of the component used to render the cell (only one component should be added to the cell)
        rowModel - the model of the row item being rendered. this model usually contains the model provided by the data provider.
        See Also:
        Item