Announcement

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

    Little bug with HeaderSpans in combination with setCanPickFields false

    Using the following code:

    Code:
    ListGrid listGrid = new ListGrid();
    		ListGridField foo = new ListGridField("foo", "foo");
    		ListGridField blah = new ListGridField("blah", "blah");
    		HeaderSpan headerSpan = new HeaderSpan("bar", new String[]{"foo", "blah"});
    		listGrid.setFields(foo, blah);
    		listGrid.setHeaderSpans(headerSpan);
    		listGrid.setCanPickFields(false);
    You can still pick the fields when you right click on the headerspan (as seen in the attached image)

    I see this on version v8.3d_2012-10-31/PowerEdition Deployment (built 2012-10-31) on Firefox 10 with GWT 2.4
    Attached Files

    #2
    Thanks for the notification. We've made a change to address this (will show up in nightly builds on the 3.1 and 4.0d branches going forwards)

    Comment

    Working...
    X