|
POST
|
Jamal, Have a look at the help on creating script tools: http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001500000006000000.htm Regards Anthony
... View more
02-04-2013
01:32 AM
|
0
|
0
|
1431
|
|
POST
|
Jamal, Essentially what you are after is performing a compress on the database: http://resources.arcgis.com/en/help/main/10.1/index.html#/The_geodatabase_compress_operation/003n000000s5000000/ This can easily be done by a peice of python script: http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000000p000000 Regards Anthony
... View more
02-04-2013
01:05 AM
|
1
|
0
|
1431
|
|
POST
|
Eamonn, I think you can use one or the other but not both at the same time, Regards Anthony
... View more
02-02-2013
08:14 AM
|
0
|
0
|
1700
|
|
POST
|
Robert, My personal preference would be the second option if it gives you tighter control. I always think it is better to have the most control you can. Regards Anthony
... View more
02-01-2013
07:37 AM
|
0
|
0
|
837
|
|
POST
|
Robert, Not sure if you would need a flag for autoexecuteonselection on each drop down or just one set for the whole expression. Either way would work but the later maybe easier to implement. Look forward to your solution if it makes the enhancement cut. Many thanks again for all your effort, Regards Anthony
... View more
02-01-2013
07:04 AM
|
0
|
0
|
837
|
|
POST
|
Robert, The fix you supplied works if you have more than one field set as required, but the problem still exists if the fields are not set to be required. In my case all fields are optional as I want the user to be able to search on what fields they would like to search on (this may be a single field or a combination). But the query still fires on change of a field if they are all set to not required. What I have done is disabled the automatic query on change of drop down value, but in cases where there is only one field the automatic search would be good. So what I think the solution needs to be is either check if more than one drop down is set up for the search and then disable the automatic search or have a setting to each layer in the config that allows you to specify automatic search true or false. Regards Anthony
... View more
02-01-2013
06:41 AM
|
0
|
0
|
837
|
|
POST
|
Jamal, When data is registered as versioned with the option to move edits to base, edits are automatically moved from the delta tables to the base tables when you save edits to sde.default or when you post edits in a child version to sde.default. Saving edits in a child version of default does not cause edits to be moved from the delta tables to the base table. This option is really designed to support nonversioned edits by third-party applications. There is a good flow diagram here that helps you decide if that option would work with your workflow: http://resources.arcgis.com/en/help/main/10.1/index.html#//003n000000t0000000 Regards Anthony
... View more
02-01-2013
06:02 AM
|
2
|
0
|
11436
|
|
POST
|
Jamal, By right-clicking an individual replica, you bring up a context menu with the following options: Rename???Renames the replica; type a new name and press ENTER. Unregister???Unregisters the replica; if a synchronization version exists, it will also be removed. View log???Opens the Replica Log; this option is only available for one-way and two-way replicas. The Replica Log is discussed in more detail below. Refresh???Refreshes the replica; the latest state of the replica properties are displayed. Validate schema???Validates the replica schema; a progress bar monitors the status of the validation. This automatically corrects a replica that contains invalid datasets. Datasets can become invalid if they have been renamed, deleted, or unversioned. Properties???Opens the Replica Properties dialog box. Replica properties are discussed in more detail below. Regards Anthony
... View more
02-01-2013
03:41 AM
|
0
|
0
|
6080
|
|
POST
|
Kenneth, Try commenting out the line: m_geogToProg.projectInverse(pt); And see what you get Regards Anthony
... View more
01-31-2013
07:56 AM
|
0
|
0
|
3390
|
|
POST
|
Kenneth, I take it your application is in web mercator. The coordinates displayed are the stage x and y from the position of the mouse what you need to do is convert this from web mercator to lat long. If you have access to the source code try changing the following in the map_mouseMoveHandler function:
if (wkid === 102100 || wkid === 102113 || wkid === 3857)
{
var pt:Point = new Point(mapPoint.x, mapPoint.y);
m_geogToProg.projectInverse(pt);
mgrs = MoreUtils.getMGRSString(pt.y, pt.x);
Mercator.WebMercator.toGeographic(pt);
coords.text = "MGRS: " + mgrs + " Scale: 1:" + map.scale + "\n" + "Lat: " + pt.y.toString() + " Long: " + pt.x.toString();}
Regards Anthony
... View more
01-30-2013
11:21 AM
|
0
|
0
|
3390
|
|
POST
|
Todd, This has always been an issue with the toc component, it does not update to programmatic changes to a layers visibility. If you do Come up with a solution I will be interested in your implementation as I am yet to find a solution. Regards Anthony
... View more
01-30-2013
10:26 AM
|
0
|
0
|
1620
|
|
POST
|
Annie, If you want to add data from your own arcgis server add the following attribute to your map tag: addarcgisbasemaps="false" This will stop the online services being added. Then specify each layer you want to use from your server: <layer label="layer name" type="dynamic" visible="true" alpha="1" url="http://yourserver/ArcGIS/rest/services/service_name/MapServer" icon="URL to icon" /> See: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Layer_tag/01m30000000p000000/ Regards Anthony
... View more
01-30-2013
09:39 AM
|
0
|
0
|
1328
|
|
POST
|
Alex, I have found that if I try and publish a WFS from a mxd that has the same layer added more than once it fails. This is not your problem is it? Regards Anthony
... View more
01-30-2013
09:25 AM
|
0
|
0
|
1123
|
|
POST
|
Alex, I have found that if I try and publish a WFS from a mxd that has the same layer added mor than once it fails. This is not your problem is it? Regards Anthony
... View more
01-30-2013
09:25 AM
|
0
|
0
|
1123
|
| 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
|