Hi Robert,
I'm experiencing an issue with eSearch 2.12 when using with the AT widget. I can not export results from the AT widget when querying via eSearch. However I can still export the same results within eSearch. Any adivce would be useful.
cheers
Solved! Go to Solution.
Rod,
Unfortunately I can not fix this inside the eSearch widget. It is an issue with the AT Widget and it not checking if the layer has a url (i.e. meaning it comes from a client side FeatureLayer). The fix is in the AT widgets _FeatureTable.js file.
widgets\AttributeTable\table\_FeatureTable.js > exportToCSV function:
//Change
options.fromClient = false;
//To
options.fromClient = (this.layer.url)?false:true;
Rod,
Unfortunately I can not fix this inside the eSearch widget. It is an issue with the AT Widget and it not checking if the layer has a url (i.e. meaning it comes from a client side FeatureLayer). The fix is in the AT widgets _FeatureTable.js file.
widgets\AttributeTable\table\_FeatureTable.js > exportToCSV function:
//Change
options.fromClient = false;
//To
options.fromClient = (this.layer.url)?false:true;
Thanks Roberts. Has this been reported to ESRI?
Nope