IDEA
|
The inability to add records to non-spatial tables is preventing me from recommending ArcGIS Online to small client who are not in a position financially or technically to use desktop licenses.
... View more
02-27-2021
04:08 AM
|
0
|
0
|
427
|
IDEA
|
Thanks for the suggestion Kory. I have only used Arcade in a couple of situations (dynamic map layout text and attribute rules), so took this opportunity to learn some more about the use profiles (https://developers.arcgis.com/arcade/guide/profiles/). In the simple example for our case, we have a Customer table with OBJECTID (primary key) and Name, and an Invoice table which includes CustomerOBJECTID. When editing an invoice, we want a drop-down list of Customer Names that then saves the corresponding CustomerOBJECTID. We do have a relationship class between the tables, but I what can't see anywhere in the Arcade use profiles and examples is how to make it populate a domain (or fill a drop-down list) in the default editors.
... View more
06-17-2020
11:46 AM
|
0
|
0
|
143
|
IDEA
|
Currently (Enterprise/Server 10.7.1), parameter filters (e.g. picklists) for geoprocessing services are fixed at the time of publishing based on the successful ArcGIS Pro tool run being published. It would be good to allow dynamic parameters, for instance by executing the updateParameters() Python toolbox code. In our case, we want to build the filter/picklist from field values in a geodatabase table, so the code to do this would only need to run as the tool dialog is being initialized, not every time the user changes a parameter. Thanks!
... View more
12-16-2019
11:06 AM
|
1
|
0
|
45
|
IDEA
|
Currently (Enterprise/Server 10.7.1), parameter filters (e.g. picklists) for geoprocessing services are fixed at the time of publishing based on the successful ArcGIS Pro tool run being published. It would be good to allow dynamic parameters, for instance by executing the updateParameters() Python toolbox code. In our case, we want to build the filter/picklist from field values in a geodatabase table, so the code to do this would only need to run as the tool dialog is being initialized, not every time the user changes a parameter. Thanks!
... View more
12-16-2019
11:06 AM
|
1
|
0
|
39
|
POST
|
I figured out the first part of your question! You can specify .values for a ValueTable parameter without specifying .list, as per the following example from a Python toolbox tool (note, no .list is provided for filters[0]): metrics = arcpy.Parameter( displayName = 'Metrics', name = 'metrics', datatype = 'GPValueTable', parameterType = 'Required', direction = 'Input') metrics.columns = [['GPString', 'Metric'], ['GPLong', 'Relative Weight']] metrics.filters[1].list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] metrics.values = [['Metric A', 0], ['Metric B', 0]] For the second part of your question, try a column of type Boolean. Randal
... View more
11-08-2018
06:55 AM
|
1
|
1
|
64
|
POST
|
Did you ever find a solution for this? Thanks, Randal
... View more
11-08-2018
06:40 AM
|
0
|
0
|
64
|
IDEA
|
Another limitation is when the primary column in the ValueTable is of parameter data type GPLayer (for instance if you want the user to be able add raster and/or vector datasets), then browsing to disk (as opposed to picking a layer already added to the map) only lets you select *.lyr files!
... View more
01-20-2017
08:39 AM
|
0
|
0
|
20
|
IDEA
|
Another limitation is when the primary column in the ValueTable is of parameter data type GPLayer (for instance if you want the user to be able add raster and/or vector datasets), then browsing to disk (as opposed to picking a layer already added to the map) only lets you select *.lyr files!
... View more
01-20-2017
08:39 AM
|
0
|
0
|
7
|
IDEA
|
As per the Limitations section of https://esri.jiveon.com/docs/DOC-3210 and the ideas of https://geonet.esri.com/ideas/6812, I would like to see Python Toolboxes (and even Script Tools and ModelBuilder Tools for that matter) be able to have dynamic values in ValueTable Columns, so that each row can have a different picklist of values for the same column.
... View more
01-18-2017
01:35 PM
|
1
|
1
|
135
|
IDEA
|
As per the Limitations section of https://esri.jiveon.com/docs/DOC-3210 and the ideas of https://geonet.esri.com/ideas/6812, I would like to see Python Toolboxes (and even Script Tools and ModelBuilder Tools for that matter) be able to have dynamic values in ValueTable Columns, so that each row can have a different picklist of values for the same column.
... View more
01-18-2017
01:35 PM
|
1
|
1
|
122
|
Online Status |
Offline
|
Date Last Visited |
02-27-2021
05:38 AM
|