As some of you may recall, I've been having problems Ajaxifying controls within a RadSplitter. It looks like I overlooked the simplest solution of all, wrap the entire RadSplitter in a RadAjaxPanel. This seems to be working perfectly except for one odd quirk.
In my original JavaScript driven screen, I had a fairly standard OnClientClicked JavaScript function designed to disable the save button after one click (to prevent the usual problem with multiple submissions).
function disableSave(button, args) {
if (Page_IsValid) {
button.set_enabled(false);
}
}
Once I wrapped the splitter in a RadAjaxPanel, I found that this function seemed to disable the server side OnClick function. The button would click once and become disabled, but the OnClick event never fired.
What am I seeing here?
In my original JavaScript driven screen, I had a fairly standard OnClientClicked JavaScript function designed to disable the save button after one click (to prevent the usual problem with multiple submissions).
function disableSave(button, args) {
if (Page_IsValid) {
button.set_enabled(false);
}
}
Once I wrapped the splitter in a RadAjaxPanel, I found that this function seemed to disable the server side OnClick function. The button would click once and become disabled, but the OnClick event never fired.
What am I seeing here?