SNAPSHOT_v13.1d_2023-11-22/Enterprise Deployment
Chrome on MacOS
Hello, I've got a js error TypeError: ds.getField is not a function in ISC_Forms.js, line 51451, <field = ds.getField(this.name);>:
while debugging I see that ds is set to the identifier of the dataSource, not the dataSource instance, so I think it's a quick fix in the framework.
Chrome on MacOS
Hello, I've got a js error TypeError: ds.getField is not a function in ISC_Forms.js, line 51451, <field = ds.getField(this.name);>:
Code:
if (this._elementType == "FILE") {
// capture is not defined in the fileItem/uploadItem
if (!this.capture) {
// we search for the mimeType in the DSField
if (this.form.parentElement && this.form.parentElement.dataSource) {
var ds = this.form.parentElement.dataSource,
field = ds.getField(this.name);
Comment