eSearch 2.12 / AT Widget - Export issue

578
3
Jump to solution
02-20-2020 05:32 PM
RodWoodfordOld
Occasional Contributor III

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

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

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;

View solution in original post

3 Replies
RobertScheitlin__GISP
MVP Emeritus

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;
RodWoodfordOld
Occasional Contributor III

Thanks Roberts. Has this been reported to ESRI?

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Nope

0 Kudos