|
POST
|
It appears as if you are using LIKE, but have an exact value. Try this: <value prompt="Example: 3216">REPNUMBER like '%[value]%'</value>
... View more
04-30-2015
09:01 AM
|
1
|
7
|
2810
|
|
POST
|
There is the data extract widget: ArcGIS Viewer for Flex R_
... View more
04-30-2015
08:58 AM
|
0
|
0
|
790
|
|
POST
|
Do you happen to have an extent set in your map tag (initial or full)? I've seen this kind of behavior when you get the N/E reversed in the extent settings in the <map> tag (easy to do since the flex seems to want these backwards of what I'm used to). Easy test, just remove all extent settings and test. R_
... View more
04-30-2015
08:54 AM
|
0
|
0
|
1295
|
|
POST
|
Does the one that is showing also have a feature service created with it as well? Not somewhere I can test, and it's been a while, but seems I remember (especially with older server) that you need to publish as both mapservice and featureservice to get it to show in the attribute table widget. R_
... View more
03-19-2015
09:09 AM
|
0
|
0
|
721
|
|
POST
|
I think you need to have them as attachments in the geodatabase, then you can set the <showattachments> tag in the popup config. R_
... View more
03-19-2015
09:02 AM
|
1
|
0
|
705
|
|
POST
|
Hmm, wonder where you put the "idea" to fix their "ideas" page. The link above sends me to some other site wanting me to create a new login to even view the link. I found it at this link http://esri.force.com/apex/ideaSearchResults?s=file+upload+wab&searchButton=search which allows me to see the post, however, if you try to promote it, it just takes you to another page. Under Recent Ideas, click more and scroll down on this page https://c.na9.visual.force.com/apex/ideaList?c=09a300000004xET&category=&sort=recent and it finally lets me promote the idea????? In case others want to promote it, yet can't navigate the new ESRI "system", R_ OK, now I see that the original link works IF you are already signed into the ideas page. However, the link above asks for signin, and does not accept the esri credentials. So, apperantly, you need to go to the esri.force.com page and log in before you try the c.na9.visual.force.com...... pages.
... View more
02-04-2015
12:56 PM
|
0
|
1
|
939
|
|
POST
|
Sorry, forgot they might not call it UI Controls anymore. I'm still in 10.0, so not sure what it is called in later versions, but: Right-click on a toolbar, go to the bottom and select Customize, Click the "Commands:" tab Scroll to the bottom of the Categories and select [ Geoprocessing Tools ] Click the Add Tools... button Browse to the toolbox and script tool that you created and select it. It will now show up in the Commands: window Drag it to a toolbar, then you can right-click on it, Change Button Image, and select the hammer (or whatever icon you want). Keep in mind that if you make any changes to the script tool, you will need to remove it from the Geoprocessing tools list and the toolbar, re-import the changes to the tool, then re-add it to the Commands: window and the toolbar or the changes won't take effect. R_
... View more
01-29-2015
07:20 AM
|
1
|
0
|
1679
|
|
POST
|
Since you already have the paths/filenames in a text file, I would read each line and use os.path.join to append them to the fullpath/filename and append to a list. Personally, I'd make a separate script for this just to copy them all to a common location, then would run the delete/merge script, but could be included if this part might be repeated in the future. Now that they are in a common folder (and copies as you don't want to delete on your only copy), first, set arcpy.env.workspace = "path to new common folder", then use list files to grab all the *.shp files in the new folder. http://resources.arcgis.com/en/help/main/10.2/index.html#//03q300000018000000 (looks like you could use ListFeatureClasses http://resources.arcgis.com/en/help/main/10.2/index.html#//03q300000023000000 to make the list as well. Probably better as you can filter to only shapefiles, poly and/or point in one swoop something like fcList = arcpy.ListFeatureClasses("*.shp",["Poylgon", "Point"]) which will make a list of just point and/or polygon shapefiles in the current workspace) However, in either case, you won't be able to merge different geometry types, so won't be able to merge points will polys, so could run one iteration with ListFeatureClasses just grabbing points, then run again with the polygons. Will have to account for this in the merge output filename so it doesn't clobber one with the other. then iterate trough the list and send to list fields http://resources.arcgis.com/en/help/main/10.2/index.html#//018v00000012000000 inside this loop, iterate trough the fields, and append to new fieldList if not "Shape" or "FID" (FID since shapefiles, if other input format, might be OBJECTID). Now, since the field list is complete for the current shapefile, pass it to delete fields (which will take the list directly, no need to iterate) http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000004n000000 to delete them. set the fieldList = [] - so is empty for the next shapefile loop. This will remove all but the FID and Shape fields from each shapefile. You still have the list of files from ListFIles, just pass this list directly to merge http://resources.arcgis.com/en/help/main/10.2/index.html#//001700000055000000 with a new output filename and run it. R_
... View more
01-28-2015
06:05 PM
|
1
|
0
|
4515
|
|
POST
|
Once you have the script tool, you can get properties of it, click the source tab, and delete the file in the "Script File" box and click OK. Then, if you don't want anyone to be able to get at the python of the script, right-click it in Catalog, and set password. If you don't care about this, skip it. Next, right-click it in Catalog, and "Import Script" (If you set a password, you will need to enter it before it allows you to browse for script). Browse to the script that "was" sourced to this tool, and import it. Now the tool/script is in the toolbox with the python code embedded in it, and doesn't need the .py file anymore, Can now be copy/pasted into other toolbox's as desired. Also, this way it will allow you to add it to the UI Controls and actually put it as a tool on a toolbar. R_
... View more
01-28-2015
05:28 PM
|
0
|
0
|
1679
|
|
POST
|
Couldn't you just put a where clause to grab current year in the MakeTableView on line 7, then run DeleteRows. That will delete only the rows matching the where query and skip the join/select part. Then could just append or insertCursor, insertRow() the "new" data. R_
... View more
01-26-2015
12:14 PM
|
0
|
0
|
3828
|
|
POST
|
On the "Source" tag of the script properties, you should see the "Run Python script in process" window. Above that, is a browse box for the "Script File". If this is blank, the Run in process is greyed out. If you browse to a python script in the "Script File:" box, and OK, then get properties again, the box will no longer be greyed out so you can uncheck it. It will be greyed out if you just imported the script to the tool. You can even set a script file, uncheck it, remove the script file, then re-import the script if you need it this way (to pin to a toolbar button for example). Hope this helps, R_
... View more
01-26-2015
11:50 AM
|
0
|
0
|
6134
|
|
POST
|
So, what happens if you make a new FGCB and FD and have it write to there? This will rule out the FGDB being corrupt if it still doesn't work. I assume you are not trying to start the FC name with a number, and the same name isn't used anywhere else in the FGDB (either inside the FD or at the root level)? R_
... View more
01-23-2015
05:47 PM
|
1
|
0
|
1445
|
|
POST
|
Hmm, now I kind of feel stupid for not looking there in the first place. I didn't even think about that being in the html, figured it was in the widget somewhere and without FlashBuilder I'm using the compiled version so was hoping it was configurable. Thanks again, that did just what I was after. Too easy R_
... View more
01-23-2015
04:50 PM
|
0
|
0
|
2635
|
|
POST
|
Hi Robert, Curious if there is a way to control the initial zoom level of the popup streetview window? If I drag/drop the little man, it opens the panorama in the streetview window, and I can zoom out 6.5 clicks of the mouse wheel to get the entire extent of the image. In Google Maps, it is only zoomed in one click of the wheel. Just wondering if there is a way to control that rather than have to roll the mouse out 7 clicks to see the entire extent of the panorama each time a new streetview is loaded. Thanks again, R_
... View more
01-23-2015
02:18 PM
|
0
|
2
|
2635
|
|
POST
|
Not exactly what you are asking for, but one way is to select and <Ctrl><C> the value from the popup. There is no right-click copy option, but the <Ctrl><C> works. R_
... View more
12-15-2014
08:55 AM
|
0
|
1
|
1525
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:00 PM | |
| 1 | 09-14-2022 07:53 AM | |
| 1 | 09-14-2022 08:23 AM | |
| 1 | 05-21-2026 08:53 AM | |
| 1 | 05-14-2026 04:28 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|