-
Notifications
You must be signed in to change notification settings - Fork 50
Description
Is there any wiki or API documentation?
I want to create some custom filters for Label columns and Jpa entity Columns,
I wouldn't mind helping build this wiki.
for starters;
what are these two functions for?
public Container.Filter generateFilter(Object propertyId, Field<?> originatingField) { }
public AbstractField<?> getCustomFilterComponent(Object propertyId) { }
and this function:
public Filter generateFilter(Object propertyId, Object value) { }
can i use this one to filter my objects how i want?
is propertyId always just the name of the column or an object containing other information?
The filteringTable works really well with Timestamps but if i wanted to add support for Time filtering,
would i do it in this function?
public String getDateFormatPattern(Object propertyId) { }
what is the syntax for makiing a DateFormatPattern?
How would I add a Dropdown with options to filter my
filterTable.addGeneratedColumn("state", new CustomTable.ColumnGenerator() {creates a label} ?
thanks for this slick addon