|
POST
|
Bill, From the help: Disabling the Services Directory is recommended as a best practice for ArcGIS Server systems that are public. You may choose to enable the Service Directory on production systems, only if there is a need to make the HTML pages and forms available to the end users. Once disabled, users are not able to view and use the services using Services Directory HTML pages i.e requests that are made for HTML output format (f=html or when parameter f is not specified). They'll receive an error message if they attempt to access the Services Directory once it has been disabled by the admin. All client applications (Web APIs, Desktop, Mobile, etc.) that programmatically access the Services using JSON or other output formats will continue to function as expected. So it should work, what may cause a problem is accessing the created file such as a PDF or jpg Regards Anthony
... View more
10-09-2013
09:26 AM
|
0
|
0
|
1124
|
|
POST
|
Bill, If you remove the URL for the printing service from the config directory it will revert to quick printing like previous versions: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Print_widget_tags/01m30000001n000000/ Regards Anthony
... View more
10-07-2013
12:10 PM
|
0
|
0
|
1124
|
|
POST
|
Leo, If you look at the source code for my widget here, it may give you some pointers: http://www.arcgis.com/home/item.html?id=cdac64f40b53435c9b191731fcd3c9c1 Regards Anthony
... View more
10-07-2013
11:08 AM
|
0
|
0
|
620
|
|
POST
|
Will, Maybe you need to stop the client from caching the data try using disableclientcaching="true" and/or mode="onDemand" Regards Anthony
... View more
10-07-2013
03:05 AM
|
0
|
0
|
934
|
|
POST
|
Mark, the easiest way to do this is to secure the base layer that is first visible in your application, users will then automatically be prompted to log in You can easily just set up a user and password in ArcGIS Manager, follow the link below on securing your services: http://resources.arcgis.com/en/help/main/10.1/index.html#/Configuring_ArcGIS_Server_security/0154000005qz000000/ Regards Anthony
... View more
10-04-2013
04:30 AM
|
0
|
0
|
837
|
|
POST
|
Venus, You need to provide a layer name in your layer tag and you only need to use the sublayer tag if your layers are coming from a single mapservice and you are not adding your layers in as individual feature services: <layersettings> <layer name="layer name"> <exportlocation>false</exportlocation> </layer> </layersettings> Regards Anthony
... View more
10-02-2013
12:11 PM
|
0
|
0
|
2326
|
|
POST
|
Venus, The exportlocation tag needs setting to false in the layer settings of your attribute table config file, see: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Attribute_Table_widget_tags/01m30000004t000000/ E.g:
<layer name="PoolPermits">
<fields>
<field name="objectid" alias="ObjectID"/>
<field name="apn" alias="APN"/>s
<field name="pool_permit" alias="Pool_Permit"/>
</fields>
<showobjectid>false</showobjectid>
<showglobalid>false</showglobalid>
<exportlocation>false</exportlocation>
<showattachments>true</showattachments>
<showrelatedrecords>true</showrelatedrecords>
<columnsorder>alphabetical</columnsorder>
</layer>
Regards Anthony
... View more
10-02-2013
10:48 AM
|
0
|
0
|
2326
|
|
POST
|
Bart, I have raised the issue on GitHub for the flex team https://github.com/Esri/arcgis-viewer-flex/issues/202 Regards Anthony
... View more
09-23-2013
09:29 AM
|
0
|
0
|
1542
|
|
POST
|
Bart, It sounds like you are having trouble with the way the flex application encodes a URL. What happens is when the URL is encoded any special characters in the URL are encoded into the HTML code, i.e. %20 which is used to denote a space in the URL becomes %2520 as %25 is used for a percent sign. One way round it would be to do a find and replace in ArcMap and change your spaces from %20 to a space. What does cause great issues are links to sharepoints sites which have numerous special characters in them. Regards Anthony
... View more
09-23-2013
09:11 AM
|
0
|
0
|
1542
|
|
POST
|
Bartlomiej, No, Not out of the box, this would require a change in the source code, do you have the ability to do that? Regards Anthony
... View more
09-23-2013
04:26 AM
|
0
|
0
|
1542
|
|
POST
|
Chris, Are you not getting the select by attribute icon in the header of your widget as seen in the images in this page: http://resources.arcgis.com/en/help/flex-viewer/concepts/#/Search_widget/01m300000038000000/ Regards Anthony
... View more
09-18-2013
09:35 AM
|
0
|
0
|
682
|
|
POST
|
Navi, Not quite sure what you mean by 'interactive' but have you looked at the chart widget in the viewer for ideas: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Chart_widget/01m300000046000000/ or the example in the API help here: https://developers.arcgis.com/en/flex/sample-code/query-result-as-charts.htm Regards Anthony
... View more
09-17-2013
10:59 PM
|
0
|
0
|
604
|
|
POST
|
Erwin, It was mentioned at the user conference that the ability to zoom in past the lowest zoom level was something that was being looked at for the 3.5 release. Lets see if the team have managed to add this enhancement in time. Bjorn can you confirm or deny this? Regards Anthony
... View more
09-17-2013
08:20 AM
|
0
|
0
|
2996
|
|
POST
|
Manuel, No not with the out of the box version, but you can with Roberts enhanced search: http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e Regards Anthony
... View more
09-16-2013
11:04 AM
|
0
|
0
|
560
|
|
POST
|
Andrezj, Are you using server 10.1 as there was an extra attribute added to the query function with service pack 1 that allows you to return unique values. returnDistinctValues //This option was added at 10.1 SP1 Description: If true then returns distinct values based on the fields specified in outFields. This parameter applies only if supportsAdvancedQueries property of the layer is true. Syntax: returnDistinctValues=<true | false> Example: returnDistinctValues=true See: http://resources.arcgis.com/en/help/rest/apiref/ Regards Anthony
... View more
09-16-2013
04:09 AM
|
0
|
0
|
1142
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|