We are pretty excited with this service pack release as it comes along with the Beta edition of the RadGridView control and the first community preview of the RadDocking tool for Silverlight. You can learn more about these "Futures" build in the following blog post:
RadControls for Silverlight Futures
Below you can find detailed information about all the changes included in the latest service pack release of RadControls for Silverlight. We will much appreciate your feedback on the progress we made with this SP release. All your comments are welcome.
To download the files please log into your telerik.com account.
To see the demos follow the the linke below:
QSF Examples
Common
RadNavigation is a unique custom framework developed by Telerik, which is not provided in the standard Microsoft toolset. It enables the navigation within your application by providing API for navigating through the pages. To provide even better user experience, RadNavigation also features built-in animations to make the page transition smoother, thus enriching the UI and usability of your web applications. Solve the problem of navigating through the pages within a website with Telerik Navigation Framework.
protected void grdUserInfo_SelectedIndexChanged(object sender, EventArgs e)
{
pkid.Value =grdUserInfo.SelectedRow.Cells[1].Text;
Session[
"pkidValue"] = pkid.Value;
MasterPage Master = new MasterPage();
Master.ID =
"RADMAster";
PlaceHolder plc = ((PlaceHolder)this.Page.Master.Master.FindControl("SplitterContentPlaceHolder"). FindControl("SmartChartContentAreaHolder").FindControl("tabstrip1").FindControl("UpdatePanel1"). FindControl("PlaceHolder1"));
plc.Controls.Clear();
string controlPath = "Registration.ascx";
UserControl uc = (UserControl)LoadControl(controlPath);
uc.ID =
userload1";
plc.Controls.Add(uc);
}
Now when am clicking update button on registration page the updatebtn click event is not getting fired and again search usercontrol is getting displayed.
plz any one help me how can i fire that update btn click event.
protected void grdUserInfo_SelectedIndexChanged(object sender, EventArgs e)
{
pkid.Value =grdUserInfo.SelectedRow.Cells[1].Text;
Session[
"pkidValue"] = pkid.Value;
MasterPage Master = new MasterPage();
Master.ID =
"RADMAster";
PlaceHolder plc = ((PlaceHolder)this.Page.Master.Master.FindControl("SplitterContentPlaceHolder"). FindControl("SmartChartContentAreaHolder").FindControl("tabstrip1").FindControl("UpdatePanel1"). FindControl("PlaceHolder1"));
plc.Controls.Clear();
string controlPath = "Registration.ascx";
UserControl uc = (UserControl)LoadControl(controlPath);
uc.ID =
"userload1";
plc.Controls.Add(uc);
}
Now when am clicking update button on registration page the updatebtn click event is not getting fired and again search usercontrol is getting displayed.
plz any one help me how can i fire that update btn click event.