Hello,
Quick question regarding the ListView widget.
Is there a way to clear the highlightSymbol? I notice that even when you close the widget the hightlightSymbol is still present on the map.
I have a ton of other questions regarding this widget but I figure I will start with a simple one. =]
Mark,
The List view widget does not have anything in the code for clearing the selection when the widget is closed. If you want to add that then you need to add an onClose function like this:
onClose: function () {
this.featureLayer.clearSelection();
}
awesome! much appreciated!