Hi,

I use a rich:datatabel component to display data from an class extending the 
EntityQuery class

  | @Name("recipientsList")
  | public class RecipientsList extends EntityQuery {
  | 

from datatable i use method expression

  | <h:form>
  |     <rich:dataTable id="searchresults"
  |                                     
onRowMouseOver="this.style.backgroundColor='#F1F1F1'"
  |                                     
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"
  |                     var="addrlist"
  |                             value="#{addresslist}">
  |         <f:facet name="header">
  |                     <rich:columnGroup>
  |                             <rich:column>
  |                                     <h:outputText 
value="Surname"></h:outputText>
  |                             </rich:column>
  |                     </rich:columnGroup>
  |             </f:facet>
  |             <rich:column>
  |                     <h:outputText 
value="#{addrlist.surname}"></h:outputText>
  |             </rich:column>
  |             <a:support id="support1" event="onRowClick" 
action="#{recipientsList.selectedRecipient(addrlist)}"/>
  |     </rich:dataTable>
  |     </h:form>
  | 
to call selectedRecipient on above class and set the selected recipient from 
table in the class.

In firebug I can see that the ajax-request works, but the method in class is 
never called (debug). There is nothing to see, no error or whatever.

I also have used <a:support> and <richt:dataTable> in the same way with an 
other app and there the correspondending method is called. 
Is there a limitation using EL enhancement or why method is not called in this 
case?

Thanks

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

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

Reply via email to