Hi,
I have been trying to create an ajaxified RadPanelBar in my project and ran into some issues when I found that the RadAjaxManager wouldn't raise OnRequestStart and OnResponseEnd events under one specific scenario. Everything works fine if the entire panel bar itself is added to the AjaxSettings collection. The problem with client event occurs when individual panel bar items are added to AjaxSettings collection.
....RadAjaxManager1.AjaxSettings.AddAjaxSetting(panelbar1, panelbar1, RadAjaxLoadingPanel1); -- Works fine
Doesn't raise client events:
foreach (RadPanelItem panelItem in this.panelbar1)
{
RadAjaxManager1.AjaxSettings.AddAjaxSetting(panelItem, panelItem, RadAjaxLoadingPanel1);
}
Ring a bell?
Many thanks
Velu
I have been trying to create an ajaxified RadPanelBar in my project and ran into some issues when I found that the RadAjaxManager wouldn't raise OnRequestStart and OnResponseEnd events under one specific scenario. Everything works fine if the entire panel bar itself is added to the AjaxSettings collection. The problem with client event occurs when individual panel bar items are added to AjaxSettings collection.
....RadAjaxManager1.AjaxSettings.AddAjaxSetting(panelbar1, panelbar1, RadAjaxLoadingPanel1); -- Works fine
Doesn't raise client events:
foreach (RadPanelItem panelItem in this.panelbar1)
{
RadAjaxManager1.AjaxSettings.AddAjaxSetting(panelItem, panelItem, RadAjaxLoadingPanel1);
}
Ring a bell?
Many thanks
Velu