Interface ActionTable.IField<R>

All Superinterfaces:
org.apache.wicket.util.io.IClusterable, Serializable
Enclosing class:
ActionTable<R>

public static interface ActionTable.IField<R> extends org.apache.wicket.util.io.IClusterable
Represents a field that will be turned into a table column in this action table. Needs a header and the ability to derive a value for each row of the table.
  • Method Details

    • getHeaderKey

      String getHeaderKey()
    • getFieldValue

      Object getFieldValue(R item)
      Return an object to display. If the object is a String, it will be displayed directly, otherwise, it will pass through wicket's converter mechanism. If the object is a collection, the contents will be displayed in a bullet list.