uicform3 - 07 validation
by fiddlerintheoffice
HTML
<script src="http://megaflop.net/uic/jquery.uic-form3.js"></script>
<link rel="stylesheet" href="http://megaflop.net/uic/jquery.uic-form3-jsfiddle.css">
<form>
<div class="wrapper float border">
<div class="property">
<label for="id">id</label>
<input type="text" id="id" name="id" value="" placeholder="new record" readonly="readonly">
</div>
<div class="property divtitle">
<label>title</label>
<div>
<input type="radio" id="title_mr" name="title" value="mr">
<label for="title_mr">Mr.</label>
<input type="radio" id="title_ms" name="title" value="ms">
<label for="title_ms">Ms.</label>
</div>
</div>
<div class="property">
<label for="firstname">firstname</label>
<input type="text" id="firstname" name="firstname" value="" placeholder="firstname">
</div>
<div class="property">
<label for="lastname">lastname</label>
<input type="text" id="lastname" name="lastname" value="" placeholder="lastname">
</div>
<div class="property">
<label for="birthday">birthday</label>
<input type="date" id="birthday" name="birthday" value="" placeholder="birthday">
</div>
<div class="property">
<label for="nationality">born in:</label>
<select name="nationality">
<option value="">-- nothing selected --</option>
<option value="gb">United Kingdom</option>
<option value="us">United States</option>
<option value="jp">Japan</option>
</select>
</div>
<div class="property divbands">
<label>Bands</label>
<br>
<div>
<div>
<input type="checkbox" id="bands_rs" name="bands" value="Rolling...
JavaScript
// add reset buttons and register their event handler
$('div.property').each(function () {
var key = $(this).find('input, textarea, select').attr('name');
var b = document.createElement('button');
$(b).addClass('reset');
$(b).attr('tabindex', '-1');
$(b).on('click', function () {
var initVal = $('form:eq(0)').uicForm3('initVal', key);
$('form:eq(0)').uicForm3('val', key, initVal);
});
var tn = document.createTextNode('reset');
b.appendChild(tn);
$(this).append(b);
});
// set defaults for uicForm3
$.fn.uicForm3.defaults = {
onPropertyModifiedStateChange: function (elements, name, initValue, currentValue, modified, e) {
if (modified === true) {
$(elements[0]).closest('div.property').addClass('modified');
$(elements[0]).closest('div.property').find('.reset').show();
} else {
$(elements[0]).closest('div.property').removeClass('modified');
$(elements[0]).closest('div.property').find('.reset').hide();
}
},
onFormModifiedStateChange: function (modified, e) {
if (modified === true) {
$('form:eq(0)').addClass('modified');
} else {
$('form:eq(0)').removeClass('modified');
}
},
onPropertyValidStateChange: function (elements, name, valid, value) {
if (valid === false) {
$(elements[0]).closest('div.property').addClass('invalid');
} else {
$(elements[0]).closest('div.property').removeClass('invalid');
}
},
onFormValidStateChange: function (valid, e) {
if (valid === false) {
$('form:eq(0)').addClass('invalid');
} else {
$('form:eq(0)').removeClass('invalid');
}
}
}
// apply uicForm3 to the form
$('form:eq(0)').uicForm3();
// register actions for the click event of the action buttons
$('#setData').on('click', function (e) {
...