This component will iterate through a datastore and for each row in the datastore, generate html for components contained in it. The list
can render in a table (adds formatting) or not (you have to do all the formatting). If the list renders in a table, it can be difided into
columns for newpaper style iteration.
addPropertyExpression(Object comp, String propertyName, DataStoreExpression propExpression) This method will add a property expression to the HtmlDataTable.
The propExpression will be evaluated by the evaluatePropertyExpression method
Parameters: comp - The component to set the property for Parameters: propertyName - The name of the property to set.
This method will add a property expression to the HtmlDataTable. The property expression will automatically set a property value with the results of the passed expression.
Parameters: comp - The component to set the property for Parameters: propertyName - The name of the property to set. The component must have a corresponding setProperty method or this method will throw a NoSuchMethodException Parameters: expEval - java.lang.String The datastore evaluator that evaluates the expression exception: java.lang.NoSuchMethodException - The exception description. exception: com.salmonllc.sql.DataStoreException - The exception description.
This method will add a property expression to the HtmlDataTable.
The propExpression will be evaluated by the evaluatePropertyExpression method
Parameters: comp - The component to set the property for Parameters: propertyName - The name of the property to set. The component must have a corresponding setProperty method or this method will throw a NoSuchMethodException Parameters: propExpression - com.salmonllc.html.PropertyExpression The instance of PropertyExpression that should do the evaluating. exception: java.lang.NoSuchMethodException - The exception description. exception: com.salmonllc.sql.DataStoreException - The exception description.
This method will add a property expression to the HtmlDataTable. The property expression will automatically set a property value with the results of the passed expression.
Parameters: comp - The component to set the property for Parameters: propertyName - The name of the property to set. The component must have a corresponding setProperty method or this method will throw a NoSuchMethodException Parameters: expression - java.lang.String The datastore expression to evaluate exception: java.lang.NoSuchMethodException - The exception description. exception: com.salmonllc.sql.DataStoreException - The exception description.