Hi,
We wanted to use custom pickListProperties with SelectItem and that did not work for us. We tracked down the problem to the following code:
Version v12.1p_2020-08-21/LGPL Development Only (2020-08-21)
ISC_Forms.js
Line 69261
if (this.progressiveLoading === true || this.progressiveLoading === false) {
if (this.pickListProperties == null) this.picklistProperties = {};
this.picklistProperties.progressiveLoading = this.progressiveLoading;
}
As you can see, the first use of 'pickListProperties' has upper-case 'L' (which is correct, I think) and the 2nd and 3rd 'picklistProperties' have lower-case 'l'.
Of course, in javascript members are case-sensitive so this will not work as intented. Probably just an easy-to-make coding typo.
Thanks
We wanted to use custom pickListProperties with SelectItem and that did not work for us. We tracked down the problem to the following code:
Version v12.1p_2020-08-21/LGPL Development Only (2020-08-21)
ISC_Forms.js
Line 69261
if (this.progressiveLoading === true || this.progressiveLoading === false) {
if (this.pickListProperties == null) this.picklistProperties = {};
this.picklistProperties.progressiveLoading = this.progressiveLoading;
}
As you can see, the first use of 'pickListProperties' has upper-case 'L' (which is correct, I think) and the 2nd and 3rd 'picklistProperties' have lower-case 'l'.
Of course, in javascript members are case-sensitive so this will not work as intented. Probably just an easy-to-make coding typo.
Thanks
Comment