You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2005/05/22 07:53:33 UTC

DO NOT REPLY [Bug 35008] New: - [Shale] Clay component missing inheritances

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=35008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=35008

           Summary: [Shale] Clay component missing inheritances
           Product: Struts
           Version: Nightly Build
          Platform: Other
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Shale
        AssignedTo: dev@struts.apache.org
        ReportedBy: gvanmatre@comcast.net
                CC: manklu@web.de
 BugsThisDependsOn: 34714


The inheritance for the converters, validators, valueChangeListeners, and 
actionListeners was not implemented.  The fix will allow elements and 
components to inheritance these attributes.  An example follows:

<component jsfid="zip" id="zip" extends="inputText"> 
  <attributes>
    <set name="value" useValueLateBinding="true" value="#{managed-bean-
name.zip}" />
    <set name="maxlength" value="9" />
    <set name="size" value="5"/>
    <set name="valueChangeListener" useMethodLateBinding="true" value="#
{managed-bean-name.zipValueChange}" />
 </attributes>	
 <converter jsfid="integerConverter" />
 <validator jsfid="validateLongRange">
    <attributes>
       <set name="minimum" value="80000" />
       <set name="maximum" value="80125" />
    </attributes>	
 </validator>
 <valueChangeListener jsfid="testValueChangeListener" />
</component> 

<component jsfid="agentCityStateZipPanel" extends="panelGrid">
...
   <element renderId="4" jsfid="zip"/> 
...
</component>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org