GWT PagingScrollTable ( set a style on a particular cell of the header table )
Posted
by Mario
on Stack Overflow
See other posts from Stack Overflow
or by Mario
Published on 2010-04-02T15:12:46Z
Indexed on
2010/04/07
17:13 UTC
Read the original article
Hit count: 424
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;
}
© Stack Overflow or respective owner