Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Regression in 4.1d? ListGrid.setGroupByField() must be before ListGrid.setSort() now

$
0
0
Hi Isomorphic,

I just changed from current 4.0p to current 4.1d. I noted that the following is not possible any more:
Code:

setSort(new SortSpecifier[] { new SortSpecifier("F2", SortDirection.ASCENDING) });
setGroupByField("STATUS");

It now has to be:
Code:

setGroupByField("STATUS");
setSort(new SortSpecifier[] { new SortSpecifier("F2", SortDirection.ASCENDING) });

I get the following warning in the console:
Code:

16:38:46.701:MUP0:WARN:Log:Cannot change configuration property 'groupByField' to STATUS now that component isc_LeadlistCreation_0 has been created.
From a previous post of yours I think this is about forced early initialization.

Best regards,
Blama

Viewing all articles
Browse latest Browse all 4756

Trending Articles