migrating from 8.x versions to 1.0

Old Styles @deprecated

These css classes were applied in previous version of the <display:*> tag library. See the "now use" column for direction on how migrate your css to the new version (a quick task which will also improve the quality -and lower the weight- of your html output)

classwasnow use
tableassigned to the main table tagon class is assigned by default. You can add your own adding a "class" attribute to the <display:table> tag
tableRowActionassigned to the tr tag of the action row (paging, export, etc...)You can totally customize the html generated using properties, no css class is added by default
tableRowHeaderassigned to the tr tag of the header row Assign a style to thead tr element, you don't need a class. If you want this style to be applied only to the <display:table> simply add a class or id to the table tag and create a children rule in css like table.myclass thead tr {color:red;}
tableRowOddassigned to the tr tag of all odd numbered data rowsthe name of the class is now simply "odd"
tableRowEvenassigned to the tr tag of all even numbered data rowsthe name of the class is now simply "even"
tableCellActionassigned to the td tag of all actions cells (paging, export, etc...)You can totally customize the html generated using properties, no css class is added by default
tableCellHeaderassigned to the td tag of all header cells Assign a style to thead th element, you don't need a class. If you want this style to be applied only to the <display:table>, simply add a class or id to the table tag and create a parent.child rule in css like table.myclass tbody th {color:red;}
tableCellassigned to the td tag of all data cells Assign a style to tbody td element. You don't need a class. If you want this style to be applied only to the <display:table>, simply add a class or id to the table tag and create a parent.child rule in css like table.myclass tbody td {color:red;}