0
我使用MVC3 C#和我有一些數據註釋模型(驗證規則)MVC3 + jQuery驗證:如何捕捉錯誤或確定事件
在我view.cshtml文件我有一些表格在現有元素上使用絕對座標繪製一些圖形的複雜邏輯。
當用戶提交帶有不正確數據的表單時,jQuery檢查使@ Html.ValidationMessageFor(...)的某些字段可見。現在用戶可以更正數據 - 並立即生成@ Html.ValidationMessageFor(...)消息dissapear。
所以,這顯示/隱藏移動其他頁面元素和此運動打破了我的絕對定位,我需要調用重繪函數(CorrectSizesAndPos();)。
我該如何捕捉這些討厭的highlite/unhigligt事件?
現在:
我的ID添加到我的表格:
@using (Html.BeginForm("Action1", "Controller1", FormMethod.Post, new {id="VMCreateForm"}))
我添加事件,檢查數據提交:
$("#VMCreateForm").submit(function() { if (true == $("#VMCreateForm").valid()) { $(":disabled").removeAttr('disabled'); //<-- I need this to transfer data to server from some disabled fields... } CorrectSizesAndPos(); return true; });
我能趕上如果提交之前形式不好:
$(document).ready(function() { $("#VMCreateForm").bind('invalid-form.validate', function (form, validator) { console.log('invalid-form.validate'); CorrectSizesAndPos(); } ); });
我嘗試也裏面添加$( 「#VMCreateForm」)的一些事件。驗證({..}),但他們並沒有援引...
我如何能趕上時unobstrusive驗證是否顯示或隱藏驗證消息?