Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid with frozen column - header render problem

    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:
    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 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.

    #2
    This was a temporary regression which has now been addressed. The build in question has been removed from the downloads list, and we'll be putting up a new (working) build later today.

    Regards
    Isomorphic Software

    Comment

    Working...
    X