You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am making an extension with a UI that can update multiple parameters in my dashboard. The data source is linked to a database. Currently, each change in a parameter/call to changeValueAsync causes the datasource to be queried.
Is it possible for me to group them up and update multiple parameters all at once to reduce the number of time the database is queried?
The text was updated successfully, but these errors were encountered:
I know this doesn’t answer your question, but I’ve found great success in dashboard design by concatenating my parameters into one string (e.g. “x=abc|y=def|z=ghi…” along with calculated fields which parse that parameter string for the requisite values. Then I can make fantastic use of parameter actions which modify one or more parts of the parameter string at a time. This would, in effect, solve your problem.
Cheers,
I am making an extension with a UI that can update multiple parameters in my dashboard. The data source is linked to a database. Currently, each change in a parameter/call to
changeValueAsync
causes the datasource to be queried.Is it possible for me to group them up and update multiple parameters all at once to reduce the number of time the database is queried?
The text was updated successfully, but these errors were encountered: