Client side form validation removal in GUI

If I add a form field like a text input and add some validation to it such as Alphanumeric, it adds data-rule-alphanumeric="" if I later decide to remove that validation in the GUI then instead of just removing data-rule-alphanumeric="" it replaces it with data-msg-alphanumeric=""

Final Result after adding Alphanumeric and then removing it again

<div class="col">
    <label for="photographerAddName" class="form-label mb-0">Photographer Name *:</label>
    <input id="photographerAddName" name="photographerAddName" type="text" class="form-control" required="" data-msg-alphanumeric="">
</div>

I can confirm this.

1 Like

This has been fixed in Wappler 4.0.5

This topic was automatically closed after 31 hours. New replies are no longer allowed.