1 Reply Latest reply on Feb 2, 2009 4:09 AM by ilya_shaikovsky

    Calendar in ExtendedDataTable - cutting popup contents probl

    afrontczak

      Hi,
      I'm implementing inplace editing in ExtendedDataTable and I encountered following problem.
      I placed Calendar in a ExtendedDataTable column, working in popup mode. When I click on callendar button to show popup - popup is shown, but only in area of the parent table, so bottom and right side of the popup are cut.
      my code:
      <rich:extendedDataTable
      id="messagesTable" var="vsMessage"
      rowKeyVar="rkv" value="#{backing_messagesList.messagesDataModel}"
      selection="#{backing_messagesList.messageSelection}"
      height="250px" width="850px" selectionMode="single"
      rules="all">
      (...)
      <rich:calendar
      enableManualInput="true"
      direction="auto"
      showInput="true"
      showApplyButton="false"
      value="#{vsMessage.message.displayTime}"
      popup="true" datePattern="dd-MM-yyyy HH:mm"
      cellWidth="24px" cellHeight="22px"
      style="width:220px"
      />
      </rich:extendedDataTable>
      Is there any solution to use the calendar without cutting popup contents?

      greetings,
      Alexander