Hello,
I've found a bug in the 3.1d enterprise edition (2012/10/04). The FormItem in the FilterEditor of a immutable ListGridField is marked readonly in the DOM, even if the ListGridField is explicitly configured to allow filtering.
Here is a short example to reproduce the behaviour:
I've found a bug in the 3.1d enterprise edition (2012/10/04). The FormItem in the FilterEditor of a immutable ListGridField is marked readonly in the DOM, even if the ListGridField is explicitly configured to allow filtering.
Here is a short example to reproduce the behaviour:
Code:
public void onModuleLoad() { final ListGrid lg = new ListGrid(); ListGridField f1 = new ListGridField("f1"); ListGridField f2 = new ListGridField("f2"); f2.setCanEdit(false); f2.setCanFilter(true); lg.setFields(f1, f2); lg.setCanEdit(true); lg.setShowFilterEditor(true); lg.draw(); }
Comment