In my application (running on IE8), Im using jquery ui (1.9.1) along with jquery ui closeable plugin. I have got a tab structure in one of my screens.Whenever I try to close the tab by clicking the close button link, everything works perfectly fine; tab closes and next tab get selected. But in case after perfroming some action on the tab and that action need to close the tab dynamically, I invoke the below function
function removeSelectedTab() {
var existTabs = $('#additionalTabs').tabs("length");
var selIndex = $("#additionalTabs").tabs("option", "selected");
$("#additionalTabs").tabs("remove", selIndex);
if (existTabs == 1) {
window.close();
}
}
After this, it closes the current tab, but I'm not able to select any content other than radio button and drop downs in the next tab. Even static text is not selectable. Browser version is IE 8.
Have any one experienced same problem with jquery ui and closeable plugin. Why is the text selection getting disabled. Solutions would be greatly appreciated.
Hi, I am new to jquery and wanted to use jauery validate plugin in my project. But I have seen that jquery displays errors as inline messages.But in order to remain backward compatibility in my project, I have to show the error messages as an alert, ie all error messages aggregated into a single message.Is there any way by which I can customise this in the plugin.I think I can get a hanlde of all the error messages,and publish it as an alert, rather modifying the dom to show as inline messages.Any pointer into this will be helpful. Thanks in advance