One possible solution is to customize the renderization of the cell
(http://www.gwt-ext.com/docs/2.0.4/com/gwtext/client/widgets/grid/
Renderer.html), when you setup the column configuration (http://
www.gwt-ext.com/docs/2.0.4/com/gwtext/client/widgets/grid/ColumnConfig.html)...
columnConfigA.setRenderer(new Renderer(
public String render(Object value, CellMetadata
cellMetadata, Record record, int rowIndex, int colNum, Store store) {
//if value = condition then underline the cell
text...
return "<b>"+value+"</b>";
}
});
Regards,
Leo
On Nov 2, 3:13 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am using GWT 1.5.3 and GWT-Ext 2.0.5 and I can't find any method to
> set Tooltips for the GridPanel data cells
> (NOT for the column Headers...this is no problem).
>
> Does anyone know how to add them?
>
> Also I would like to underline the text in some cells of the
> Grid...Does anyone know if and how this works?
>
> Thx very much in advance.
>
> Cheers
> Sascha H.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" 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/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---