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
whether they should have the same settings as the template they come from - when template settings changes, so does theirs
whether they should have their own settings - when DPU template settings changes, their does not.
This should be realized by a checkbox that switches this behavior.
Minimalistic version is a button that propagates template settings to all instances. It can use the DPU template ID in the following simple SQL query:
UPDATE unifiedviews.dpu_instance AS t JOIN unifiedviews.dpu_template AS s on s.id = <DPU TEMPLATE ID>
SET t.configuration = s.configuration
WHERE t.dpu_id = s.id;
The text was updated successfully, but these errors were encountered:
Just a note: rather then "not editable" I would use term "can not be saved".
As configuration dialog is created and managed by DPU, disabling every component may be possible but seems to me like unnecessary effort.
A label that announce fact that this is "read only" dialog, may also be considered.
All DPU instances should have an option to choose
This should be realized by a checkbox that switches this behavior.
Minimalistic version is a button that propagates template settings to all instances. It can use the DPU template ID in the following simple SQL query:
The text was updated successfully, but these errors were encountered: