Unobtrusive validation adds css classes to your validation element and determines whether it will show or hide the validation message. Here is an example:
<div class="editor-label"> <label>Start date</label> <input class="text-box single-line" data-val="true" data-val-required="Must not be Empty" id="StartDate" name="StartDate" type="text" value=""> <span class="field-validation-valid" data-valmsg-for="StartDate" data-valmsg-replace="true"></span> </div> <div class="targetDiv">Your div shown only if StartDate is invalid</div>
This is how your html will look in the source. After you enter incorrect data in the StartDate input, it will be slightly different from the classes added to your input and the span element:
<div class="editor-label"> <label>Start date</label> <input class="text-box single-line input-validation-error" data-val="true" data-val-required="Must not be Empty" id="StartDate" name="StartDate" type="text" value=""> <span class="field-validation-error ui-state-error-icon ui-icon-alert" data-valmsg-for="StartDate" data-valmsg-replace="true"></span> </div>
You can check if the span element has a field validation class and will show your targetDiv. I imitated how unobtrusive validation works and provided a working sample:
$(function(){ $('.targetDiv').hide(); //hide your div $('#StartDate').change(function() { //capture change event for your input StartDate $(this).addClass('input-validation-error'); //add unobtrusive css class for not valid $(this).next().removeClass('field-validation-valid').addClass('field-validation-error ui-state-error-icon ui-icon-alert'); //add unobtrusive css class for not valid on span if( $(this).next().hasClass('field-validation-error')) //check if span has a error class on it { $('.targetDiv').show(); //show your div } }); });β
In the real world example, you just need to use:
$('#StartDate').change(function() { if( $(this).next().hasClass('field-validation-error')) { $('.targetDiv').show(); } });
Here's jsFiddle: http://jsfiddle.net/mgrcic/Zj6zS/
Sincerely.
Matija grcic
source share