Wappler Version : 6.0.0 b10 (stable channel)
Operating System : mac
Server Model: node
Database Type:
Hosting Type:
Expected behavior
A tagify input should display a red border if it fails validation like other inputs
Actual behavior
How to reproduce
<form id="form1" method="post" is="dmx-serverconnect-form" action="api/tagify_test">
<div class="form-group mb-3 row">
<label for="input1" class="col-sm-2 col-form-label">Some text</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="input1" name="input1" aria-describedby="input1_help" placeholder="Enter some text" required="">
<small id="input1_help" class="form-text text-muted">Your input is very valuable.</small>
</div>
</div>
<div class="form-group md-3"> <label for="input1" class="form-label">Some text</label>
<input id="tags" name="tags" type="text" class="form-control" is="dmx-tagify" dmx-bind:data="get_users.data.get_users" tag-text="first_name" tag-value="user_id" mode="mix" pattern="@" dropdown-position="input" required="">
<small id="input1_help" class="form-text text-muted">Your input is very valuable.</small>
</div>
<button id="btn1" class="btn btn-primary" type="submit">Button</button>
</form>