I'm trying to publish data from "_FeatureTable.js" file in the Attribute Table widget.
I'm getting this error: this.publishData is not a function...
Seems that I'm missing something here!
Any idea?
Solved! Go to Solution.
Majdi,
The publishData function is only available from inside the Widget.js file and not supporting files like the _FeatureTable.js. You will have to call "this.parentWidget.publishData" from inside the _FeatureTable.js
Majdi,
The publishData function is only available from inside the Widget.js file and not supporting files like the _FeatureTable.js. You will have to call "this.parentWidget.publishData" from inside the _FeatureTable.js
Thanks again Robert !