0 Replies Latest reply on Mar 26, 2010 11:40 AM by eiselejosef

    ExtendedDataTable - Tabindex Position in Filterfield

      Hi @ll,

       

      we are using rich:extendedDataTable and define 1 column als a filter-column. Code:

       

           <rich:extendedDataTable id="myTable"
                  rows="0" columnClasses="col" height="300px" width="550px"
                  value="#{bean.dataModel}"
                  var="konto" sortMode="single"
                  selection="#{bean.selection}"
                  enableContextMenu="true"
                  tableState="#{bean.tableState}"
                  selectionMode="single">
              ...
             
              <rich:column id="myColumn" width="70px"
                  sortable="true" sortBy="#{konto.myColumn}"
                 filterBy="#{konto.vmgBtBetriebsnr}" filterEvent="onkeyup" label="myColumn">
                  <f:facet name="header">
                      <h:outputText value="myColumn" 
                          escape="false"/>
                  </f:facet>
                  <h:outputText value="#{konto.myColumn}" />

               ...

       

       

      In the table control a input field (CSS-name: rich-filter-input) is generated and the filter condition can be typed in. Everything works fine.

       

      We want to give this filter input field a tabindex together with all other input fields or buttons.

      Is there a way to set the tabindex of the filter input field?

       

      Kind regards

       

      Josef