You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Bernd Bohmann (JIRA)" <de...@myfaces.apache.org> on 2009/02/10 12:01:01 UTC

[jira] Resolved: (TOBAGO-734) Properties of UICell should support ValueBinding

     [ https://issues.apache.org/jira/browse/TOBAGO-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bernd Bohmann resolved TOBAGO-734.
----------------------------------

    Resolution: Fixed

> 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
>         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
>            Assignee: Bernd Bohmann
>            Priority: Minor
>             Fix For: 1.0.21
>
>
> 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.