11 Replies Latest reply on Aug 10, 2007 7:32 PM by alexsmirnov

    a4j:commandLink can't re-render it's parent?

    shlang

      I have:

      <rich:dataGrid rendered="true" id="calendarGrid" columns="7" value="#{LiveLounge.calendarDays}" var="days">
      <a4j:commandLink id="dayLink" action="#{LiveLounge.setDay}" ajaxSingle="false" limitToList="true" reRender="calendarGrid">
      <f:param name="selectedDate" value="#{days.date}"></f:param>
      <h:outputText id="dayText" value="#{days.date}">
      <f:convertDateTime pattern="dd"/>
      </h:outputText>
      </a4j:commandLink>
      </rich:dataGrid>
      


      After clicking on any link in grid i have the following behavior:
      Clicked link disappears and new one grid appears instead of link. In other words, grid nested in grid appears on the page.
      What's wrong?