Hi,
I'm using GXT ColumnConfig class to create a table in a web
application. My problem is that I don't know how to ensure a debug ID
for each column header. I want to use the ensureDebugId() method, but
the getHeader() method of the ColumnConfig class returns a String, not
a ColumnHeader object, which would have allowed me to call the
ensureDebugId method and, of course, I can't modify the ColumnHeader
class from GXT. How can I get to the column header after instantiating
a ColumnConfig? Has anyone on this group ever worked with this kind of
structure or has any knowledge in this respect? I would be very
grateful if you could help me. Any ideas will do.
Thank you,
Madalina.
P.S.: Here is a sample of my code:
column = new ColumnConfig ();
column.setId("callDate");
column.setWidth(150);
column.setMenuDisabled(true);
column.setHeader(lm.get(CallStartTimeSHORT));
column.setRenderer(dateRenderer);
configs.add(column);
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.