Problems with validation plugin: location of the messages and disabling of other buttons when it fires up.
Hi people I have 2 questions:
1. How can I get the messages on the right side and not on the left side of the component?? For the textboxes it's working ok but for the rest not. (see the attached image)
- <div class="formLayout" style="width:100%">
- <fieldset><legend>Data</legend>
- <label for="name">Name:</label><input class="required" type="text" name="name" id="name"/><br/>
- <label for="code">Code:</label><input class="required" type="text" name="code" id="code"/><br/>
- <label for="description">Description:</label><textarea class="required" name="description" id="description" rows="3" cols="30"></textarea><br/>
- <label for="notes">Notes:</label><textarea class="required" name="notes" id="notes" rows="3" cols="30"></textarea><br/>
- </fieldset>
- </div>
2. In the attached image, once I click on "Save", the validation fires up. It's ok, but then I realize that the rest of the buttons are disabled? Why? How can I avoid that? I want to click on "Search" (it redirects to another page) but I cannot.