Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a very peculiar problem. I have a Primeface datatable configured for single selection. One of the columns has a graphicImage component. Clicking on any of the text on a row trigger a row selection, however, clicking on the graphicImage does not. What is going on ? Here's the code snipet. Thanks.

<p:dataTable value="#{inputfeeds.feedsList}" var="if" id="feedsTable"
        selection="#{inputfeeds.selectedFeed}"
        selectionMode="single" 
        onRowSelectUpdate="displayFeed" 
                    onRowSelectComplete="feedDialog.show()">
<p:column sortBy="#{if.name}" styleClass="logger-table-tab-text-left"
            style="width: 100px;">
  <f:facet name="header">
    <h:outputText value="#{msgs.FeedName}"  escape="false" />
  </f:facet>
  <h:outputText value="#{if.name}" />
</p:column>

<p:column sortBy="#{if.id}" styleClass="logger-table-tab-text-left"
            style="width: 100px;">
  <f:facet name="header">
    <h:outputText value="#{msgs.FeedId}"  escape="false" />
  </f:facet>
  <h:outputText value="#{if.id}" />
</p:column>

<p:column styleClass="logger-table-tab-text-left"
            sortBy="#{if.stateS}"
            style="width: 100px;">
  <f:facet name="header">
    <h:outputText value="#{msgs.FeedState}"  escape="false" />
  </f:facet>
  <p:graphicImage value="resources/images/#{if.icon}" 
                alt="#{if.state}" width="24" height="24"  
                style="vertical-align: bottom">
  </p:graphicImage>
  <h:outputText value=" #{if.stateS}" />
    </p:column>
</p:dataTable>

Thanks for any light you could shed on this problem.

Binh

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.