Announcement

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

    pickListProperties/picklistProperties inconsistent case L/l in SelectItem

    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

    #2
    Thank you very much for the notification!
    Yes - this is a clear typo in the code. It would essentially make the progressiveLoading setting unreliable for SelectItem
    This will be fixed in nightly builds going forward (Oct 27 and above)

    Regards
    Isomorphic Software

    Comment

    Working...
    X