Allow all dataSource attributes to accept expressions
This commit is contained in:
parent
fe1ab6def8
commit
ec65aae369
@ -399,7 +399,7 @@ public class CellRepeater
|
|||||||
*
|
*
|
||||||
* <p> <code><netui-data:cellRepeater dataSource="pageFlow.myIterativeData"></code>
|
* <p> <code><netui-data:cellRepeater dataSource="pageFlow.myIterativeData"></code>
|
||||||
* @jsptagref.attributesyntaxvalue <i>expression_datasource</i>
|
* @jsptagref.attributesyntaxvalue <i>expression_datasource</i>
|
||||||
* @netui:attribute required="true"
|
* @netui:attribute required="true" rtexprvalue="true"
|
||||||
*/
|
*/
|
||||||
public void setDataSource(String dataSource) {
|
public void setDataSource(String dataSource) {
|
||||||
_dataSource = dataSource;
|
_dataSource = dataSource;
|
||||||
|
@ -327,7 +327,7 @@ public class DataGrid
|
|||||||
* This expression will be evaluated the data grid in order to obtain a reference to the data set.
|
* This expression will be evaluated the data grid in order to obtain a reference to the data set.
|
||||||
* </p>
|
* </p>
|
||||||
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
||||||
* @netui:attribute required="true"
|
* @netui:attribute required="true" rtexprvalue="true"
|
||||||
* description="The <code>dataSource</code> attribute determines both
|
* description="The <code>dataSource</code> attribute determines both
|
||||||
* the source of populating data for the tag and the object to which the tag submits data."
|
* the source of populating data for the tag and the object to which the tag submits data."
|
||||||
*/
|
*/
|
||||||
|
@ -725,7 +725,7 @@ public class Repeater
|
|||||||
*
|
*
|
||||||
* <p> <code><netui-data:repeater dataSource="pageFlow.myIterativeData"></code>
|
* <p> <code><netui-data:repeater dataSource="pageFlow.myIterativeData"></code>
|
||||||
* @jsptagref.attributesyntaxvalue <i>expression_datasource</i>
|
* @jsptagref.attributesyntaxvalue <i>expression_datasource</i>
|
||||||
* @netui:attribute required="true"
|
* @netui:attribute required="true" rtexprvalue="true"
|
||||||
*/
|
*/
|
||||||
public void setDataSource(String dataSource) {
|
public void setDataSource(String dataSource) {
|
||||||
_dataSource = dataSource;
|
_dataSource = dataSource;
|
||||||
|
@ -82,7 +82,7 @@ public class DivPanel extends AbstractClassicTag
|
|||||||
* @jsptagref.attributedescription An expression which identifies which DivPanelState object will store state between posts to the server.
|
* @jsptagref.attributedescription An expression which identifies which DivPanelState object will store state between posts to the server.
|
||||||
* @jsptagref.databindable true
|
* @jsptagref.databindable true
|
||||||
* @jsptagref.attributesyntaxvalue <i>expression</i>
|
* @jsptagref.attributesyntaxvalue <i>expression</i>
|
||||||
* @netui:attribute description="Sets an expression which indentifies the DivPanelState storing the state of the
|
* @netui:attribute rtexprvalue="true" description="Sets an expression which indentifies the DivPanelState storing the state of the
|
||||||
* DivPanel between posts."
|
* DivPanel between posts."
|
||||||
*/
|
*/
|
||||||
public void setDataSource(String dataSource)
|
public void setDataSource(String dataSource)
|
||||||
|
@ -326,7 +326,7 @@ abstract public class HtmlGroupBaseTag
|
|||||||
* the source of populating data for the tag
|
* the source of populating data for the tag
|
||||||
* @jsptagref.databindable false
|
* @jsptagref.databindable false
|
||||||
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
||||||
* @netui:attribute required="true"
|
* @netui:attribute required="true" rtexprvalue="true"
|
||||||
* description="Sets the tag's data source."
|
* description="Sets the tag's data source."
|
||||||
*/
|
*/
|
||||||
public void setDataSource(String dataSource)
|
public void setDataSource(String dataSource)
|
||||||
|
@ -671,7 +671,7 @@ public class Tree extends AbstractSimpleTag implements HtmlConstants,
|
|||||||
* that represents the root of the tree.
|
* that represents the root of the tree.
|
||||||
* @jsptagref.databindable true
|
* @jsptagref.databindable true
|
||||||
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
* @jsptagref.attributesyntaxvalue <i>string_dataSource</i>
|
||||||
* @netui:attribute required="true"
|
* @netui:attribute required="true" rtexprvalue="true"
|
||||||
* description="Sets an expression which indentifies the TreeElement that represents the root of
|
* description="Sets an expression which indentifies the TreeElement that represents the root of
|
||||||
* the tree."
|
* the tree."
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user