tags:

views:

102

answers:

2

as in Table Grid specify cell id = ""

A: 

well, one solution might be using JSNI. You would write a native js method that would get your cell (sth like document.getElementsByTagName) and then use pure js to assign it an id.

I'm not sure if there is some kind of TableCell class in GWT (I'm quite confident that there is) - you can try with setAttribute method.

markovuksanovic
A: 

You can always get around GWT limitation on setting attributes using .getElement().setAttribute( "attribute", "value" ).

Ashwin Prabhu