문제

I am using xVal for client validation in an ASP.NET MVC application. Since I have too many fields in one of the forms, I split it into sections and used jQuery accordion to display one section at the same time. Is there a way to activate the accordion section which contains validation errors when the user clicks submit?

도움이 되었습니까?

해결책

Try this code, it won't activate the panel but it will show it (same result)

            $('input#submitBuuton')
            .live("click", function() {   
                $('form').submit();     
                $('#formHolder').find('span.field-validation-error').parents('fieldset').find('legend').next().show();
                return false;
            });
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top