Wappler Version : 3.9.5
Operating System : Windows 10
Server Model: Tested on ASP.NET & NodeJS
Expected behavior
<dmx-value id="var1" dmx-bind:value="1"></dmx-value>
<select id="select1" class="form-control" multiple="true" dmx-bind:disabled="var1.value == 1">
<option value="1">Option One</option>
<option value="2">Option Two</option>
<option value="3">Option Three</option>
</select>
<button id="btn1" class="btn" dmx-on:click="var1.setValue(99)">Button</button>
On page load the select is disabled as expected, since value of variable is 1.
On click of the button, value of variable becomes 99, which should enable the select control.
Actual behavior
On click of the button, the select control is still disabled.
But, if the select is a single-select, this same setup works fine without any issues.