|
POST
|
Solution: disableClientCaching="true" FeatureLayers have their client caching enabled by default. Once I disabled the client caching on the feature layer, the releated records in the standalone table updated as you would expect. I hope this helps someone else. Tyler
... View more
08-21-2012
11:42 AM
|
0
|
0
|
227
|
|
POST
|
Greetings, I am creating an editing application which the end user will use to manage their geographic and tabular data. Each feature that the user creates can have zero to many associated activitities which are contained in a standalone table. The user is given the option to create or delete instances in the activity table that relates back to their edit feature. So far the application works pretty well. I am able to edit features and attributes in the feature layer and add or delete records in the standalone table. However, it apears that each time I gather the activity records that are associated with each feature, none of the activity records that I have either added or deleted have been updated in the standalone table. It's really strange. It's clear that the records are being recorded in ArcCat. I can add a bunch of records using the interface that I created, but if I close and open the interface (thus pulling the related records from the Activities table once agein) none of the new records are displayed. It get's stranger though. If I close and open the application, all of the edits that I made in the last application session are available. I need to be able to have these edits update instantaniously. The code that I am using to add new activities is: activityTable.applyEdits([ activity ], null, null); activityTable.refresh(); The code I use to remove records is: var ary:Array = selectedRecord as Array; incidentVoteTable.applyEdits(null, null, ary); incidentVoteTable.refresh(); Are there any glaring errors in my approach? Thanks, Tyler Waring
... View more
08-21-2012
07:35 AM
|
0
|
1
|
566
|
|
POST
|
Awesome. This is just the line of logic that I need. Thanks for the conversion function as well. Both of these will definitely save me some time.
... View more
04-16-2012
06:35 PM
|
0
|
4
|
1212
|
|
POST
|
Hi Robert, I am trying to figure out a way to detect at runtime if the field I am accessing is a date field so I can convert the string to a readable date. Since I am not hard-coding the FIELD_NAMES and am gathering these dependencies from an XML file, I have to be able to trap for fields that are of the date field type before I can convert the string to a readable date. Is there a way to detect the field type at run time? Thanks for all of your help. Tyler Waring
... View more
04-16-2012
01:39 PM
|
1
|
0
|
1212
|
|
POST
|
Greetings, I am trying to write a dynamic search tool that loads all of the layer's querying and reporting dependencies into an XML file. I have done pretty good so far but ran into a problem with the date field. The dates get converted into seconds since new years in like 1970 or something. I suppose I could flag any date fields in the XML file but it doing this would make for a pretty messy schema. I am getting the attributes using the following simplified logic: var grAttributes:Object = graphic.attributes; for (fld in grAttributes) { //I want to test to see what the field type is here so that I //can convert the date vaue to something readable. var strValue:String = grAttributes[fld].toString(); } Any ideas how I can get this informaiton at runtime? Thanks, Tyler
... View more
04-16-2012
01:04 PM
|
0
|
8
|
4234
|
|
POST
|
Greetings Everyone, I am trying to create a very simple edit tool for non-GIS users to develop and manage their own datasets. I have a user that would like to develop a parcel based dataset without having to get into the ins and outs of topology and complex editing. I would like to design a tool that allows the user to select a parcel and commit it to another parcel based layer. Is a workflow like this possible with the esri:Editor class? Thanks, Tyler Waring
... View more
03-02-2012
11:11 AM
|
0
|
2
|
600
|
|
POST
|
Greetings Everyone, I am creating an edit widget and would like to extend different editing capabilities to different feature layers. I have two layers that I would like to create and modify features and attributes for. I also have a third layer that I would like to allow the user to only edit the attributes for. For consistency sake I would like the user to be forced to select and activate the feature template of the layer that they are modifying. Is this level of control available in the esri:Editor class? Any pointers or thoughts on how I could achieve this would be greatly appreciated. Thanks, Tyler Waring
... View more
03-02-2012
10:43 AM
|
0
|
2
|
798
|
|
POST
|
OK For some reason using the computer IP was problematic for the feature server on our setup. When I tested with the fully qualified domain name, we were up and running. Thanks Robert. Tyler
... View more
02-01-2012
12:11 PM
|
0
|
0
|
419
|
|
POST
|
OK For some reason using the computer IP was problematic for the feature server. When I tested with the fully qualified domain name we were up and running. Thanks everyone. Tyler
... View more
02-01-2012
12:02 PM
|
0
|
0
|
982
|
|
POST
|
Greetings, I just logged onto ArcGIS Explorer Online for the first time the other day. I was not asked to agree to any license agreement. Is there any such agreement and if so could someone direct me to it? Thanks, Tyler
... View more
02-01-2012
05:52 AM
|
0
|
1
|
2910
|
|
POST
|
Thanks Jon, I did everything you suggested but the problem still persists. The permissions on the feature dataset are set for the user in the map project right? I assume that if I can edit in the map project then everything is set up with regard to the editing template. Or is there something further that I need to take into account regarding permissions when editing via a map service? Thanks, Tyler
... View more
02-01-2012
05:43 AM
|
0
|
0
|
982
|
|
POST
|
Thanks Robert, I'm just trying to prove editing functionality with the Editor. I am trying to design a very simple editor as part a feasibility study for a larger application. My testing of the EditWidget is a alternate attempt to prove editing functionality with the Editor in my environment, not roll the EditWidget into production. I trying to troubleshoot why I am unable to get the Editor to work and I think it is probably the same reason that the EditWidget is not behaving expected. Is this the appropriate forum or should I approach this in the Flex Widget forum as if I am having trouble getting the EditWidget to work? I went back and checked the editing template in my original project and everything looks correct. The feature dataset is verisoned. Any other thoughts? Thanks, Tyler
... View more
02-01-2012
05:19 AM
|
0
|
0
|
419
|
|
POST
|
Greetings Everyone, I am trying to implement some simple editing capabilities in my Sample Flex Viewer 2.2 site but with no luck. I have created a msd with an editing template using desktop 10.0 and published it with ArcGIS server 10.0 as a feature server service by checking on the Feature Access option under the Capabilities section. However, the whole Editor object is kind of a black box to me and I am having a hard time understanding what it wants that I am not giving it. When I run my test to prove simple editing functionality I get the following error: "TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.esri.ags.components::Editor/map_mouseUpHandler() '; Another symptom is that when I test the out of the box EditWidget, no templates load. I only get a widget with a "Select template to create feature:" label and nothing else. I am having a hard time figuring out what I am doing wrong. Any kind pointers will be greatly appreciated. Thanks, Tyler Waring
... View more
01-31-2012
11:53 AM
|
0
|
3
|
690
|
|
POST
|
Greetings, I am trying to set up my flex viewer with some editing capabilities and am having problems. Could someone expand upon the following step? Once you're sure the mxd is set up with edit permissions and it's available on your server, create the map service being sure to check the Feature box (and ensure Edit is checked below). I am publish a gis resource using ArcGIS Server Manager. The only thing that I see that resembles these instructions is under Capabilities. I click on the Feature Access Checkbox under Capabilities but still have no option to check edit. Neither of the other steps in this process have anything like this either.
... View more
01-31-2012
11:34 AM
|
0
|
0
|
1160
|
|
POST
|
That is the version I use as well. I installed a different browser and it worked fine.
... View more
01-27-2012
11:35 AM
|
0
|
0
|
435
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-28-2016 03:05 PM | |
| 5 | 09-20-2017 11:37 AM | |
| 2 | 01-28-2019 12:21 PM | |
| 1 | 10-16-2017 12:56 PM | |
| 1 | 10-07-2014 07:04 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|