Class TableModelHandler
java.lang.Object
ch.tocco.nice2.model.form.spi.reader.handler.AbstractComponentHandler<Table>
ch.tocco.nice2.model.form.impl.reader.handlers.AbstractDataComponentHandler<Table>
ch.tocco.nice2.model.form.impl.reader.handlers.TableModelHandler
- All Implemented Interfaces:
ValidatorReceivable
-
Field Summary
Fields inherited from class AbstractDataComponentHandler
data, validatorHandlerContextFactoryFields inherited from class AbstractComponentHandler
displayType, field, forceEditable, label, name, receiver, scopes, useLabel -
Constructor Summary
ConstructorsConstructorDescriptionTableModelHandler(ComponentReceiver receiver, ValidatorHandlerContextFactory validatorHandlerContextFactory, DefaultValueResolver resolver) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidWill be called at the or towards the end of afterFinish().voidvoiddesktopLayout(String desktopLayout) voidA concrete class which implmentsT(not the handler).Return the Interface which represents this component (not the handler).voidvoidlimit(int limit) voidmobileLayout(String mobileLayout) voidsearchEndpoint(String searchEndpoint) voidsearchForm(boolean showSearchForm) voidselectable(boolean selectable) final voidfinal voidsetSorting(String sortingString) voidsetTemplate(String template) Methods inherited from class AbstractDataComponentHandler
addAutoComplete, addDefaultValues, addValidations, addValidator, afterFinish, beforeFinish, getDefaultValidators, setConstriction, setData, setDataType, setDefaultLangOnly, setEventHandler, setIgnoreCopy, simpleSearch, startElementMethods inherited from class AbstractComponentHandler
addAttributeProps, addExtProps, createOrGetComponent, disableOldClient, doFinish, finish, forceEditable, label, setDisplayType, setLabel, setName, setPosition, setScopes, setUseLabel
-
Constructor Details
-
TableModelHandler
public TableModelHandler(ComponentReceiver receiver, ValidatorHandlerContextFactory validatorHandlerContextFactory, DefaultValueResolver resolver)
-
-
Method Details
-
setLayout
- Throws:
ModelBuildException
-
setTemplate
@Element("template") @Cardinality(max=1) public void setTemplate(@Content String template) throws ModelBuildException - Throws:
ModelBuildException
-
setSorting
- Throws:
ModelBuildException
-
searchForm
-
limit
-
selectable
-
endpoint
-
searchEndpoint
-
layouts
-
desktopLayout
-
mobileLayout
-
clickable
-
tag
@AnyElement @Cardinality(min=0, max=2147483647) public Object tag(@ElementName String tagName) throws ModelBuildException - Throws:
ModelBuildException
-
getImplClass
Description copied from class:AbstractComponentHandlerA concrete class which implmentsT(not the handler). Expects a public-constructor which takes the parent Compononent.- Specified by:
getImplClassin classAbstractComponentHandler<Table>- Returns:
- the class
-
getInterface
Description copied from class:AbstractComponentHandlerReturn the Interface which represents this component (not the handler). This interface is normallyT- Specified by:
getInterfacein classAbstractComponentHandler<Table>- Returns:
- interface-class
-
afterDataSet
protected void afterDataSet()Description copied from class:AbstractDataComponentHandlerWill be called at the or towards the end of afterFinish().This is abstract so that every implementer is forced to know about its existence.
For an example see
TextAreaHandler.afterDataSet(); it assigns additional, component-specific data read from xml to the component: field.setRowHeight(rowHeight);- Specified by:
afterDataSetin classAbstractDataComponentHandler<Table>
-