Wappler Version : 6.8.0 (AC2)
Operating System : W11
Server Model: NodeJS
<form id="formLogin" method="post" is="dmx-serverconnect-form" action="/api/access/login">
<select id="select1" class="form-select" required="" name="select1" dmx-on:changed="browser1.alert('hi')">
<option hidden selected disabled value="">Select</option>
<option>Test1</option>
<option>Test2</option>
<option>Test3</option>
</select>
<button class="btn btn-primary" type="submit">Login</button>
</form>
In the above code, if I press submit directly, required validation will trigger. Then, if I select any value in the select
element, the changed event will not get fired.
But, if I refresh the page and first select
an element, the change event fires correctly.
Don't know if this is due to AC2, or if it was an issue in AC1 as well.