Here's another solution:
I used MVC 3 with jQuery 1.71 and jQuery UI 1.8.20. I used the jQuery UI Tabs widget and set up each tabbed area to load a partial page containing input fields.
Works great in Firefox v22 and Chrome v28, doesn't work in IE10. The error I received is "Unable to get property settings" undefined or null reference
The solution was to go to partial forms and comment on the following code:
<script src="@Url.Content("~/Scripts/jquery-1.7.1.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>*
Now it works successfully in all browsers.
Derek Davidson PST Jul 19 '13 at 8:45 2013-07-19 08:45
source share