fixed that error by using import spark.components.ComboBox rather than its mx counterpart. But now on to a new error:1020: Method marked override must override another methodHere's a portion of the affected code (from the AutoComplete.as file):package myWidgets.ParcelNotificationWidget { import flash.events.Event; import flash.events.FocusEvent; import flash.events.KeyboardEvent; import flash.net.SharedObject; import flash.ui.Keyboard; import mx.collections.ArrayCollection; import mx.collections.ListCollectionView; import mx.core.UIComponent; import spark.components.ComboBox; ------------------------------------------------ //-------------------------------------------------------------------------- // // Overridden Properties // //-------------------------------------------------------------------------- //---------------------------------- // editable //---------------------------------- /** * @private */ override public function set editable(value:Boolean):void { //This is done to prevent user from resetting the value to false super.editable = true; } /** * @private */ override public function set dataProvider(value:Object):void { super.dataProvider = value; if(!usingLocalHistory) tempCollection = value;The error has to be attributed to Flash Builder 4 since this code worked perfectly in Flex Builder 3 / SDk 3.3.....THANK YOU!!!!
package myWidgets.ParcelNotificationWidget { import flash.events.Event; import flash.events.FocusEvent; import flash.events.KeyboardEvent; import flash.net.SharedObject; import flash.ui.Keyboard; import mx.collections.ArrayCollection; import mx.collections.ListCollectionView; import mx.core.UIComponent; import spark.components.ComboBox; ------------------------------------------------ //-------------------------------------------------------------------------- // // Overridden Properties // //-------------------------------------------------------------------------- //---------------------------------- // editable //---------------------------------- /** * @private */ override public function set editable(value:Boolean):void { //This is done to prevent user from resetting the value to false super.editable = true; } /** * @private */ override public function set dataProvider(value:Object):void { super.dataProvider = value; if(!usingLocalHistory) tempCollection = value;
Hi JR,At this time, there is no core widget that does what you're looking for.Can you please describe in more detail the desired functionality and workflow on what you want to do?Hope this helps,
... Is there a widget that I can utilize to query parcel and export to a table?
Hi JR,No, widgets that were built for the Sample Flex Viewer (v1.3) will not automatically work with the ArcGIS Viewer for Flex application. Depending on the widget functionality, migrating the widget may require additional programming, upgrading to the new ArcGIS API for Flex 2.1 spec, and at minimum be recompiled and built on the new Adobe Flex SDK 4 and Adobe Flash Player 10.Hope this helps,
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.