I have a gp that gets calculated correctly but I only see the results if I reload the entire page. Is there a way to see the result without having the reload the entire page? thanks private function calculalteplanid():void { var SelectingFeature:FeatureSet = new FeatureSet(); SelectingFeature.features = myFeatureLayerstewardship.selectedFeatures SelectingFeature.fields = myFeatureLayerstewardship.layerDetails.fields var features:ArrayCollection = ArrayCollection(myFeatureLayerstewardship.graphicProvider); var featureSet:FeatureSet = new FeatureSet(features.source); featureSet.fields = myFeatureLayerstewardship.layerDetails.fields var params:Object = { "Selecting_Features": SelectingFeature, "Stewardship": featureSet } var geoprocessTask:Geoprocessor = new Geoprocessor(); geoprocessTask.outSpatialReference = myMap.spatialReference; geoprocessTask.url = "http://tfsgis-iisd01:6080/arcgis/rest/services/TwoParametersWithSelection2/GPServer/CalcFeaturesStewardshipOneParameterSelection"; geoprocessTask.submitJob(params, null, null); geoprocessTask.addEventListener(GeoprocessorEvent.JOB_COMPLETE,jobCompleteHandler); geoprocessTask.addEventListener(FaultEvent.FAULT, faultHandler2); } private function jobCompleteHandler(e:GeoprocessorEvent):void { Alert.show("Plan ID created"); myAttributeTablespatial.refresh() myFeatureLayerstewardship.refresh() } private function faultHandler2(f:FaultEvent):void { Alert.show("Unexpected fault:\n" + f.toString()); }