GWT AbstractColumnDefinition (Need to add style to certain Columns)
- by Mario
I have a column Definition for each colume that extends AbstractColumnDefinition these columns are put in a DefaultTableDefinition.
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.
my question is would I be able to remove the coursor for delete or in general for a certain column and keeping it for another one ..
i tried to do that with each column Definition but there is no such thing as remove or addstyle even to like put my own style.
THANK YOU
.gwt-ScrollTable .headerTable td {
border-bottom:1px solid black;
border-left:1px solid #CCCCCC;
border-right:1px solid #CCCCCC;
cursor:pointer;
vertical-align:bottom;
}