Hello,
I am wondering if there is a way in JavaScript to modify attributes of forms/dashboards on the fly. Specifically, if I have a dashboard whose root element look like this:
<form refresh="100">
Can I edit that dashboard refresh value on-the-fly (maybe based on a user event)? I'm not looking to re-implement refresh (like location.reload()), just change the attribute value.
Thanks in advance!