I'm doing the same but I'm using the action= attribute, not actionListener=, 
and it works:


  |                     <s:decorate id="emailDecorate">
  |                         <div class="entry">
  |                             <div class="label">E-Mail:</div>
  |                             <div class="input">
  |                                 <h:inputText tabindex="3" size="40" 
maxlength="255" required="true"
  |                                              id="email" 
value="#{userHome.instance.email}">
  |                                     <a:support event="onblur" 
reRender="emailDecorate"/>
  |                                 </h:inputText>
  |                             </div>
  |                         </div>
  |                     </s:decorate>
  | 
  |                     <s:decorate id="usernameDecorate">
  |                         <div class="entry">
  |                             <div class="label">Username:</div>
  |                             <div class="input">
  |                                 <h:inputText tabindex="4" size="16" 
maxlength="16" required="true"
  |                                              id="username" 
value="#{userHome.instance.username}">
  |                                     <a:support event="onblur" 
action="#{userHome.validateUsername}" reRender="usernameDecorate"/>
  |                                 </h:inputText>
  |                             </div>
  |                         </div>
  |                     </s:decorate>
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4034449#4034449

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4034449
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to