I created a form with a telerik tabstrip on it. The form is splitted over multiple tabs. When there is a validation error the current tab (even without a error) stays selected. Is it possible to select the first tab with an error on it.I have already:
<script type="text/javascript">
$(document).ready(function () {
$("#myForm").submit(function () {
var tabStrip = $('.t-widget.t-tabstrip.t-header').data('tTabStrip');
});
});
</script>
I can’t figure out how to iterate trough the tabs and select the tab where the validation error is on.
1 Answer