Are there ways to customize parameter behaviours in a model in ArcMap 10.8.1?
Specifically, I'd like to enable one model parameter only when another parameter (boolean type) is True.
In a script tool, I can achieve this by editing ToolValidator class. Can something similar be done with a model?
Solved! Go to Solution.
I don't see how that can be accomplished in modelbuilder, you may have to examine what is available via python's validation and switch from a model to a python tool, probably in Pro and not arcmap
preconditions perhaps, for example
If Value Is (ModelBuilder)—ArcGIS Pro | Documentation
Thanks Dan. Perhaps I should add that I'm using ArcMap 10.8.1. Not the most ideal option...gotta make do with what is available 😕
meaning you are left with
A quick tour of using preconditions—ArcMap | Documentation (arcgis.com)
Using If-Then-Else logic for branching—ArcMap | Documentation (arcgis.com)
Unfortunately preconditions and if-else logic don't quite give the same behaviour with model parameters.
Preconditions and if-else logic can be used to control whether a step (say, Step A) should be executed. But, if parameters of Step A have been marked as model parameters, then regardless of whether Step A is executed, its parameters are always marked as mandatory parameters of the model and input values are expected.
What we wanted is the ability to conditionally enable model parameters in modelbuilder: if Step A does not meet the precondition, then its parameters should also be optional.
I don't see how that can be accomplished in modelbuilder, you may have to examine what is available via python's validation and switch from a model to a python tool, probably in Pro and not arcmap
Marking this as the solution as I couldn't find any other way to achieve it either. In the end we decided to switch to a python tool.