1 Reply Latest reply on Aug 1, 2012 11:56 PM by tungtrum17

    why the first row and second row style are different from others in <rich:datable>?

    xiaolu

        I want to simulate  feature like extentdatable selectionMode="single" attribute.when i click one of rows,only this style changed,others rows recover.

       

      xhtml file SC:

        

      rich:dataTable id="table" value="#{stockInBB.dataModel}" var="row" rowClasses="odd-row"

         rows="#{stockInBB.pager.pageSize}" selectionMode="single"

          onrowclick="changeStyle(event);this.style.fontWeight='bold'"

         frozenColumns="2" iterationStatusVar="it"

         styleClass="invoiceQueryDatatable">

       

       

      Javacriipt file SC to simple:I just to change num1 style ,and i get it's ID like this:

         document.getElementById(XX).setAttribute('style','font-weight:bold !important');

       

      i can surely tell,i get the ID aready,but i change it's style on no consideration.