Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

New features

  • Row and Column level control of background highlight color (See 10854)


Defects Resolved (Java)

10954if a component is bound and has validation, need onEdit onBeforeActiveLost
10953Changed severity and debug logging around Failure to execute namespace handler
10902Swing : When Swing components is updated, the Nexaweb dialog/window displayed before Swing components blinks.
10854Row and Column level control of background highlight color.
10614CheckBox not wrapping propperly

 

10854   Row and Column level control of background highlight color
The background highlight color of tables, gridtables and treetables can now be specified per row or column.

            <table>
                 <column>
                     <header text="Column #1"/>
                 </column>
                 <column highlightBackgroundColor="blue">
                     <header text="Column #2"/>
                 </column>
                 <row>
                     <cell text="Row 1 Cell 1"/>
                     <cell text="Row 1 Cell 2"/>
                 </row>
                 <row highlightBackgroundColor="red">
                     <cell text="Row 2 Cell 1"/>
                     <cell text="Row 2 Cell 2"/>
                 </row>
                 <row>
                     <cell text="Row 3 Cell 1"/>
                     <cell text="Row 3 Cell 2"/>
                 </row>
             </table>

 

 

  • No labels