Hi Isomorphic,
I just changed from current 4.0p to current 4.1d. I noted that the following is not possible any more:
It now has to be:
I get the following warning in the console:
From a previous post of yours I think this is about forced early initialization.
Best regards,
Blama
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");
Code:
setGroupByField("STATUS"); setSort(new SortSpecifier[] { new SortSpecifier("F2", SortDirection.ASCENDING) });
Code:
16:38:46.701:MUP0:WARN:Log:Cannot change configuration property 'groupByField' to STATUS now that component isc_LeadlistCreation_0 has been created.
Best regards,
Blama
Comment