Select to view content in your preferred language

Spatial Filter Problem in QueryBuilder Widget

537
2
08-24-2010 05:09 AM
MattO_Connell
New Contributor
Hello,

I am trying to customize the sample flex viewer version 1.3 and I am having an issue with the QueryBuilder Widget. The attribute filter is working just fine with my map services but when I apply a spatial filter the widget does not move out of the "Buffering Geometry" phase. After I click the map to set a point, polygon, or line, it just says "Buffering Geometry" forever. Thanks in advance for any advice.

Matt
Tags (2)
0 Kudos
2 Replies
ErwanCaradec
New Contributor III
Hi,
i had the same problem before to correctly set the url of the rest geometry service in the widget configuration file : QueryBuilderWidget.xml.
http://yourArcGisserver/ArcGIS/rest/services/yourGeometryService...

hope that help.

Regards

Erwan Caradec
0 Kudos
ErwanCaradec
New Contributor III
Hi matt,
i had some other problems with null values on entity attributes so i change the line n°264 in QueryBuilderWidget.mxml

old line >
value = obj[fld].toString();


line changed >
if (obj[fld] != null) {value = obj[fld].toString();}


regards
Erwan
0 Kudos