|
POST
|
If you still have issues fitting the dynamic legend in the printout, this is a good workaround: In a separate mxd from the source mxd to be published (and in a different directory as well), make a legend that reflects all your desired layers. In the legend properties, enable the fixed frame and text wrapping options, as discussed above. Resize your legend to the desired size by the click-and-drag method on the layout UI. Convert legend to graphic and save as jpg. Insert picture into the layout from the source mxd to be published (which contains no layers), and save the image as part of the mxd by right-clicking>properties on the image. In summary, The problem w having Dynamic legend is that if have too many layers displayed, they may not all reflect in the legend. In the case of many layers, I believe it is better to go with pic of legend. If instead you have a few layers to display, dynamic legend is most likely ok.
... View more
10-18-2018
08:21 AM
|
0
|
0
|
4219
|
|
POST
|
Also see this ESRI technical Support Article: How To: Configure legend properties for custom print templates from Portal for ArcGIS https://support.esri.com/en/technical-article/000015666
... View more
10-17-2018
11:51 AM
|
0
|
0
|
4219
|
|
POST
|
At my organization, we login to WAB DE using a general Admin account that uses AGO credentials. The account does not belong to a specific person, but different admins/developers may use the login to work there. The admins/developers are responsible for documenting what changes were made when they logged in.
... View more
10-09-2018
08:58 AM
|
0
|
0
|
950
|
|
POST
|
Hope this helps: On the machine/server that you have WAB DE installed, either: 1 Always leave the window that opens when you double-click startup.bat open or 2 Run WAB DE as a windows service https://developers.arcgis.com/web-appbuilder/guide/getstarted-run-as-window-service.htm All your developers should be able to access the URL you mentioned above from their workstation. The caveat is that in order for them to see the same apps you are working with, they might need the login credentials you are using. If you are the admin of that login, then maybe you provide them a download of the app they want, so that they can develop it using their login instead. When they are done with their developing, they can then provide you a download of their finished product.
... View more
10-09-2018
06:41 AM
|
0
|
2
|
950
|
|
POST
|
If you are using a database view, it may not like to participate with geodatabase objects. You might try to register the view with the geodatabase, starting at 10.5, or ArcGIS Pro. https://community.esri.com/groups/geodatabase/blog/2016/12/14/new-at-105-registering-a-database-view-with-the-geodatabase
... View more
09-28-2018
09:59 AM
|
1
|
0
|
1804
|
|
POST
|
method 1: Try adding a domain to the 'SIC_ID' field at the geodatabase level, and assign coded values to the domain for each ID that exists in your table. If you have a lot of ID's, this task might get done faster by using the batch mode of the 'add coded value to domain' tool. In WAB, this should force the user to pick the ID from the drop-down of coded values. Let me know if this works to see if we use a different strategy. method 2: Is the table that contains the 'SIC_ID' field a feature class, or non-spatial table? If you can make it a feature class, you can use the attribute actions (command of the smart editor widget) on the fc the user is inputting an ID field to copy over the 'SIC_ID' field into the user's ID field, based on an intersect between the two feature classes within approximately 10ft. For this to work, you will add the specific index of the map service (for example, http://...../mapserver/2, rather than http://.../mapserver) to the web map, so that the widget can read the layer. method 3: See the Reviewer dashboard widget. https://doc.arcgis.com/en/web-appbuilder/create-apps/widget-reviewer-dashboard.htm I personally have not used this, but might be helpful.
... View more
09-18-2018
08:47 AM
|
1
|
0
|
1226
|
|
POST
|
If I understand you correctly, you want to have a parent table that is related to a child table, one to many. Then, the child table, related to a grandchild table, one to many. In other words, you have nested relationships. Based on this article, I think that the widgets should support your workflow: See 'Related Data in ArcGIS' Blog post by Michael Kelly on geonet: o https://community.esri.com/people/MKellyesri-ireland-ie-esridist/blog/2016/11/18/related-data-in-arcgis-online Try testing it in the wab widget. The related table should be visible under the 'Actions' heading> table icon (view related layers and tables) Click the table icon to see the first related table. Click the table icon again to see the second related table, if possible. My personal experience is to have a parent feature class that is related to a child table, one to many. Then creating attachments on the child table (which to me, is very similar to having a related grandchild to the child) This workflow works in wab smart editor widget. The exception is that I cannot drill down to see the attachment table in the widget, but that may be different for you since, yours is a regular table, not a table like the attachment table, which was auto-created by the geodatabase.
... View more
09-15-2018
07:53 PM
|
0
|
0
|
1676
|
|
POST
|
If you mean autoincrementing id's in wab, this might be something custom, but I don't know how to do this yet.
... View more
09-12-2018
10:30 AM
|
0
|
0
|
5266
|
|
POST
|
Addditionally, here are some other notes I took on my efforts that did not work for this purpose, but might be useful to some: · On create method: · Attrib assistant must be turned on. · On Create true, remainder false. · Since registered as versioned with moving edits to base, the newly created id and record from default is already available in all descendant versions without the need to reconcile. · Pending to test what happens when reconcile the default edits to descendants….does the on create create new id’s for the children? · The on create only works in default version, NOT any other version…..most likely because it was configured in default. · The on create only works in default version within the mxd, not from the front end application using the smart editor. · Field calculator ‘calculate unique id without attribute assistant.jpg’: · The string concatenation would add that number at the end of the string, such as SSO00009 then SSO000010. o Python § Pre-Logic Script Code: · counter = 0 def uniqueID(): global counter counter += 1 return “SSO” +(“0000”+ str(counter)) § FACILITYID = uniqueID() · CreateUniqueID’s tool: o Did not populate the XXXX part, and since it is a script, can’t be run on feature creation.
... View more
09-12-2018
10:27 AM
|
0
|
0
|
2784
|
|
POST
|
If the Global ID is too large for end users, then I recommend the following in addition to that: Add the ID field to both the parent and related child tables. Use Attribute assistant (and generate id/dynamic value tables) to populate parent ID's. join fc to child table by parent global id/child guid select null asset id's in child table. field calculate python = !Sanitary.SDE.ssParentFC.FACILITYID! save edits remove join Additionally, you can script this to occur periodically, but ensure to setloghistory to false to avoid making gdb objects slow over time. http://desktop.arcgis.com/en/arcmap/10.4/analyze/arcpy-functions/setloghistory.htm If you end up making the script, can you please post it here? I have not made that script yet.
... View more
09-12-2018
10:17 AM
|
0
|
0
|
2784
|
|
POST
|
The easiest way I know how to do this is to make the relationship from a parent Global ID field, and a child GUID field in a one to many relationship. Doing this will autofill the child GUID field with the parent's Global Id. The smart editor widget should be set to only display, not edit, these fields. · See 'Related Data in ArcGIS' Blog post by Michael Kelly on geonet: o https://community.esri.com/people/MKellyesri-ireland-ie-esridist/blog/2016/11/18/related-data-in-arcgis-online This is my workflow: Relationship Properties · Relate using 'have' as part of name. · Composite Relationship o Once asset is removed from the parent fc, related inspections are also removed. § Clients agreed that once an asset becomes abandoned, no need to keep inspection history about it · Origin FC to Destination table label: History · Destination table to Origin FC label: ssNameOfFC · select 'None' for the message direction. · 1-M · No, I do not want to add attributes to this relationship class. · pk= GlobalID · FK= RELATEDGLOBALID General Structure · FC · related to · Inspection History Table · via Parent Global ID, Global ID Data Type/Child RELATEDGLOBALID, Guid Data Type · relate to · Attachment table · via Parent Global ID, Global ID Data Type/Child RELATEDGLOBALID, Guid Data Type
... View more
09-12-2018
10:09 AM
|
1
|
0
|
2784
|
|
POST
|
I encountered this situation, and was able to find a solution: https://community.esri.com/thread/217206-how-to-use-smart-editor-to-require-user-to-populate-field How to use Smart Editor to require user to populate field? Question asked by Andres Castillo on Jul 2, 2018 How to use Smart Editor to require user to populate field?
... View more
09-12-2018
09:06 AM
|
1
|
0
|
2833
|
|
POST
|
I don't know why ago is not refreshing. Yet, I suggest you save a copy of the web map's and web app's json so that you can save the config settings for all of your custom queries.
... View more
09-11-2018
06:48 AM
|
0
|
0
|
5383
|
|
POST
|
Maybe another attempt: Try ago assistant (https://ago-assistant.esri.com/) to see if a service definition file exists for that feature service. If it does, view the definition's json to see if you can use the settings to re-make the feature service.
... View more
09-05-2018
10:44 AM
|
1
|
0
|
5608
|
|
POST
|
Hi Rick, Sorry for the delayed reply. I have to update this thread with the solution. I have to organize my documentation to strip out sensitive information so I can share. In the meantime, we can do a walk-through via private message.
... View more
09-05-2018
06:45 AM
|
1
|
0
|
16404
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-11-2024 08:12 PM | |
| 1 | 10-03-2024 07:58 AM | |
| 1 | 01-13-2025 10:30 AM | |
| 1 | 04-18-2025 04:53 PM | |
| 1 | 02-21-2025 09:01 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-25-2025
04:55 PM
|