GWT AbstractColumnDefinition (Need to add style to certain Columns)

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/02 15:13 UTC
Read the original article Hit count: 281

Filed under:
|

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;

}

© Stack Overflow or respective owner

Related posts about gwt

Related posts about css