twitter bootstrap 3 - boostrapvalidator textarea validation always green -


i having textarea code:

<div class="col-md-10"> <textarea class="form-control" cols="20" id="op_question" name="op_question" rows="2" data-bv-field="op_question"></textarea> </div> 

and having code bootstrapvalidator:

            op_question: {                 validators: {                     notempty: {                         message: 'the question required , cannot empty'                     },                     stringlength: {                         max: 500,                         message: 'post content must less 120 characters'                     }                 }             } 

the problem that, bootstrap validator green, when textarea empty, why happens according ?

cheers


Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -