Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
unfortunally i cannot open the project. I use VS 08, i think you used 2010.
But anyway a looked to the .cs files an a recognized, that you did not use an RadAjaxPanel oder an AjaxManager...
Jan
0
Tsvetoslav
Telerik team
answered on 11 Nov 2010, 05:02 PM
Hello Jan,
If you need to use RadAjaxPanel in your web part, just add it to the Controls collection of the web part and then add the grid to the Controls colleciton of the AjaxPanel.
If you need to use RadAjaxManager, then you should add it to the page items collection as follows:
RadAjaxManager ajaxmgr;
protectedoverridevoidOnInit(EventArgs e)
{
base.OnInit(e);
ajaxmgr = newRadAjaxManager();
Page.Items.Add(typeof(RadAjaxManager), ajaxmgr);
}
and then in the CreateChildControls method of the Web Part add the appropriate ajax settings.
Regards,
Tsvetoslav
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items