GWT PagingScrollTable ( set a style on a particular cell of the header table )
- by Mario
I have a column Definition for each colume that extends AbstractColumnDefinition these columns are put in a DefaultTableDefinition PART OF a PagingScrollTable
example:
NAME | SIZE | RES | DELETE |
this style (AT THE END OF THE PAGE ) is added to the column names if you notice all of them are with a cursor pointer , meaning a hand shows up when i hover above each one.
I want to remove the cursor for some cells in the header like delete.
HOW DO YOU set/add/remove a style on a particular cell of the header table of a PagingScrollTable?
THANK YOU
.gwt-ScrollTable .headerTable td {
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
border-bottom: 1px solid black;
vertical-align: bottom;
cursor: pointer;
}