Hi
I have a scenario in my application to display the radconfirm when the user changes the item in the radcombo.
I am having my radcombo inside usercontrol and i am using the usercontrol in the aspx page to load the data.
In order to trigger the onchange event i have added onclientselectedIndexcchanged event in codebehind and the corresponding Javascript event in the aspx page.
The issue is that i am not able to retain the radconfirm because of the postback issue.
Please let me know if there are any other approaches to retain the radconfirm. To be clear i have not used any AJAX for my radCombo.
Requirement:
After the user changes the Item in the radCombo the user will get a confirmation message.
Javascript:
I have a scenario in my application to display the radconfirm when the user changes the item in the radcombo.
I am having my radcombo inside usercontrol and i am using the usercontrol in the aspx page to load the data.
In order to trigger the onchange event i have added onclientselectedIndexcchanged event in codebehind and the corresponding Javascript event in the aspx page.
The issue is that i am not able to retain the radconfirm because of the postback issue.
Please let me know if there are any other approaches to retain the radconfirm. To be clear i have not used any AJAX for my radCombo.
Requirement:
After the user changes the Item in the radCombo the user will get a confirmation message.
Javascript:
function TextChange(sender, eventArgs) {
radconfirm("test", event, 350, 100, null, "test");
}
Code Behind :
cmbRadCombo.RadCombo.OnClientSelectedIndexChanged = "TextChange";
Your earliest reply is appreciated.