We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Goal: Be able to update select attributes on defaults JSON object so that projects may update the value of attributes like the "indexed."
Syntax:
{ "schema": { "additional_members": { "indexed": {"type": "bool", "adjustable": true} } }, "myparam": { "title": "My Param", "description": "My demo parameter.", "type": "float", "value": 10.0, "indexed": true } }
params.adjust({ "myparam": [{"indexed": False}] })
Effect: Updates value of "indexed" in "myparam" in params._data
params._data
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Goal: Be able to update select attributes on defaults JSON object so that projects may update the value of attributes like the "indexed."
Syntax:
Effect: Updates value of "indexed" in "myparam" in
params._data
The text was updated successfully, but these errors were encountered: