With the SP2 release of RadControls for Silverlight Q3 2008 we are introducing a community preview edition of the RadDocking control for Silverlight. You can find the build under your account at telerik.com. The download files containing the build are called Futures (RadControls_for_Silverlight_2008_3_1217_TRIAL/DEV_Futures.zip and RadControls_for_Silverlight_2008_3_1217_TRIAL/DEV_Futures.msi).
You can check the online demos at:
The features that are currently supported by this CTP edition of the RadDocking tool are listed below:
The previously released community preview edition of the RadGridView control has been through an improvement process within the last couple of weeks. Hence, we included a beta version of the control in this SP2 release. The download files can be found under your accounts at telerik.com. The download files containing the build are called Futures (RadControls_for_Silverlight_2008_3_1217_TRIAL/DEV_Futures.zip and RadControls_for_Silverlight_2008_3_1217_TRIAL/DEV_Futures.msi).
The new Beta version of the RadGridView control includes the following changes:
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.