I'm trying 4.0p from 2013-11-03 with GWT 2.5.1. I have propblem with rendering this listgrid with one frozen column:
	The header of 'f3' column is not visible.
The previous version of smartgwt i was used - smartgwt-4.0p_20130905 works correctly.
I check this with the lastest Firefox and Chrome version.
					Code:
	
	ListGrid lg = new ListGrid();
lg.setWidth100();
lg.setHeight100();
ListGridField f1 = new ListGridField("f1");
f1.setFrozen(true);
f1.setWidth("*");
ListGridField f2 = new ListGridField("f2");
f2.setWidth(200);
ListGridField f3 = new ListGridField("f3");
f2.setWidth(200);
lg.setFields(f1,f2, f3);
lg.draw();
The previous version of smartgwt i was used - smartgwt-4.0p_20130905 works correctly.
I check this with the lastest Firefox and Chrome version.

Comment