Properties of UICell should support ValueBinding
------------------------------------------------
Key: TOBAGO-734
URL: https://issues.apache.org/jira/browse/TOBAGO-734
Project: MyFaces Tobago
Issue Type: Improvement
Components: Core
Affects Versions: 1.0.20, 1.0.21, 1.1.0
Environment: Windows XP Professional
Apache Tomcat 6.0.18
Java6 Update 10
MyFaces 1.2.5
Tomahawk 12-1.1.8
Tobago 1.0.20
Reporter: Michael Bauer
Priority: Minor
Split-off from [#Tobago-733]:
The attributes of UICell should support ValueBindings to support dynamic
assignments of spans etc.
public Integer getSpanX() {
ValueBinding spanBinding = getValueBinding( ATTR_SPAN_X );
if(spanBinding != null)
{
Object obj = spanBinding.getValue( getFacesContext() );
if(obj != null && obj instanceof Integer)
{
Integer integer = (Integer) obj;
return integer;
}
}
return spanX;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.