|
POST
|
To add more "things" to the table options menu (or any other adjustment to the AttributeTable), start with the skin for AttributeTableSkin: http://resources.arcgis.com/en/help/flex-api/apiref/com/esri/ags/skins/AttributeTableSkin.html
... View more
02-27-2013
08:01 AM
|
0
|
0
|
1648
|
|
POST
|
I have this same issue with the attribute table widget. I cannot get the field order for the widget to be honored. Justin, this has already been fixed for the next release - see https://github.com/Esri/arcgis-viewer-flex/issues/23 which has the link to the actual code changes (if you are compiling it yourself).
... View more
02-26-2013
01:18 PM
|
0
|
0
|
5145
|
|
POST
|
There is no need to send something along to the server (and expecting it back). The AsyncResponder supports a third argument "token" which can be used for this. There is no need to create special classes or wrap it when the Adobe/Apache Flex SDK support it already 🙂 token:Object (default = null) ??? Additional information to associate with this request. Some of the ArcGIS API for Flex samples take advantage of this, for example in the "Routing Directions" example which use it to keep track of the "from" and "to" geocodes: http://resources.arcgis.com/en/help/flex-api/samples/index.html#/Route_Directions/01nq0000000p000000/ --- see http://gis.stackexchange.com/questions/52034/how-can-i-send-a-parameter-with-a-routetask-and-get-it-back-in-routeresult/52259#52259
... View more
02-18-2013
04:50 PM
|
0
|
0
|
749
|
|
POST
|
Ok thanks Bjorn. Is there any workaround to specify the layer on which I want to snap? No. Except for the obvious one of not using GraphicsLayer/FeatureLayer for the layers that you don't want to snap to. (and yes I realize that might not be an option for some use cases).
... View more
02-12-2013
05:35 PM
|
0
|
0
|
1040
|
|
POST
|
I'd like to know if it is possible to choose the layer(s) on which I can snap the graphic I'm moving "Snapping occurs to any node in any client-side graphics in GraphicsLayer or FeatureLayer." Ref: http://resources.arcgis.com/en/help/flex-api/apiref/com/esri/ags/tools/EditTool.html You can't specify which ones.
... View more
02-11-2013
08:15 AM
|
0
|
0
|
1040
|
|
POST
|
Clarification: Version 1.0-1.2 does not work with TILED ArcGIS 10.1 Services. Version 1.3 and onwards are fine to use. It fails in older versions because ArcGIS 10.1 is not backwards-compatible with tiled mapping requests that send in the .png extension as part of the URL. We used to do this before version 1.3 API. Accepted by 10.0, but not 10.1 http://myserver/arcgis/rest/services/MyService/MapServer/tile/2/1/1.png As of 1.3, we just ask for tiles as http://myserver/arcgis/rest/services/MyService/MapServer/tile/2/1/1 The workaround for 1.0-1.2 is to either upgrade to 1.3 or later, or a developer could extend the layer, override the getTileURL() method, call "super" and then strip off the extension.
... View more
02-08-2013
01:52 PM
|
0
|
0
|
944
|
|
POST
|
Does the 3.1 api requires a version of Flash Builder and/or Flex sdk higher than 4.6 ? No, they both require Flex 4.6 SDK or higher. http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Getting_started_for_developers/01m30000001q000000/
... View more
01-23-2013
04:03 PM
|
0
|
0
|
1901
|
|
POST
|
Flex 2.4 Renders KML KMZ layers off by 3000 km .... Flex 3.0 [is] correct... Just curious is the error in rendering caused by the kmz service utility or ?? If it's fixed in a later API version then it's probably not the utility service. It might have been fixed in version 2.5: * Improved KML support http://resources.arcgis.com/en/help/flex-api/concepts/index.html#/What_was_new_in_ArcGIS_API_for_Flex_2_x/017p00000026000000/
... View more
01-23-2013
08:13 AM
|
0
|
0
|
528
|
|
POST
|
When configuring the Elevation Profile widget for ArcGIS Viewer for Flex 3.x to use feet (rather than meters), the graph's y-axis still shows numbers that are obviously meters even though they are labled as feet. What configuration changes did you do? Just the label or also the multiplyByToConvertFromMeters tag?
... View more
01-22-2013
09:22 AM
|
0
|
0
|
2277
|
|
POST
|
One place to read more about "Mobile applications with Flex" is in the resource center: http://resources.arcgis.com/en/help/flex-api/concepts/index.html#/Mobile_applications_with_Flex/017p00000025000000/
... View more
01-18-2013
09:45 AM
|
0
|
0
|
1407
|
|
POST
|
If ESRI will update the geoprocessing widget so it will take a local file, I, and many other users will be very happy! Thanks for the suggestion to support local file uploads in the Geoprocessor widget. We will take a look at this for version 3.2 of the Flex Viewer. It would most likely just follow the steps outlined by Dasa in the thread you listed: http://forums.arcgis.com/threads/64114-Uploads-capability-on-Geoprocessor. As for the ArcGIS API for Flex - since the Flash API already supports file upload, I don't think this is something we would add to the ArcGIS API for Flex.
... View more
01-15-2013
01:03 PM
|
0
|
0
|
6819
|
|
POST
|
Is there a new release available for Thematic Map Widget? It is still available as a sample: https://github.com/Esri/arcgis-viewer-flex/tree/master/src/widgets/Samples/ThematicQuery
... View more
01-15-2013
07:06 AM
|
0
|
0
|
1261
|
|
POST
|
Beth/Keith, (a) Are you using service pack 1? There were some improvements to legend handling in 10.1 sp 1 - not sure if they would fix your specific issues though... (b) You might also want to read the KB article at http://support.esri.com/en/knowledgebase/techarticles/detail/40538 which talks about some specific issues in regards to "ArcGIS Server Account's Windows default printer's default page size". What is yours?
... View more
01-10-2013
11:21 PM
|
0
|
0
|
2665
|
|
POST
|
As part of Esri's new GitHub activities at http://esri.github.com, all the source code for the Flex Viewer have moved to https://github.com/Esri/arcgis-viewer-flex.
... View more
12-10-2012
08:23 AM
|
0
|
0
|
794
|
|
POST
|
Version 3.1 of the Flex API and Flex Viewer (being released this month) will have support for viewing and editing related records. You might want to wait for that... Even if you want to customize it further for your specific requirements, this will be a much better starting point.
... View more
12-09-2012
07:01 PM
|
0
|
0
|
831
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 03-11-2026 11:16 AM | |
| 2 | 03-17-2025 08:24 AM | |
| 3 | 03-17-2025 07:27 AM | |
| 4 | 02-26-2025 11:37 AM | |
| 1 | 03-23-2023 04:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-14-2026
04:21 PM
|