1 Reply Latest reply on Jan 29, 2008 12:01 AM by nbelaevski

    list shuttle onclick event not detected

    seammm

      hi - i am trying to detect the onclick event on the list shuttle (code below). for some reason, dblclick works but not click. in the end, i am trying to implement a "left side" that not only shows items but categories as well and provides a drill down user interface. thanks.

      ps. "rerender toolbar" is a remnant of the richfaces demo.

      <rich:listShuttle id="sourceOrganization"
      sourceValue="#{productHome.organizationSourceList}"
      targetValue="#{productHome.organizationTargetList}"
      var="organization"
      listHeight="300"
      listWidth="300"
      sourceCaptionLabel="All Organizations"
      targetCaptionLabel="Selected Organizations"
      converter="organizationConverter">

      <rich:column>
      #{organization.name}
      </rich:column>
      <a4j:support event="ondblclick" reRender="toolBar"/>

      </rich:listShuttle>