I use this to validate required fields on post
var validator = $("#caseForm").kendoValidator().data("kendoValidator"); var isvalid = validator.validate(); if (isvalid) {post..}and it works fine if field is required but if its a mask with wrong entry it doesnt work.
Do you have some sample where the mask is checked on post?