Hi Telerik Team,
We are currently evaluating your RadTabStrip and RadMultipage controls to use in our project.
We have the following requirements,
1) We have RadTabstrip control and RadMultipage control in the form. On Clicking (or) Loading on the TabStrip Item, We want to view the corresponding . aspx page in the Multipage Control.
2)We have get the Page Url and Page Title from Database. Page Title assign to the radtabstrip and Pageurl Assign to the Multipage Control, Based on Page Url, the Page will be open inside the Multipage Control.
Notes,
We have existing .aspx page url, page Title get from database, this Corresponding page url .aspx page will load in multipage control and corresponding Page title assign to the Tab strip.
Right now we are using this Coding for loading RadTabstrip and RadMultipage Control
for (int i = 0; i < DtBindScreenValue.Rows.Count; i++)
{
RadTab RadTabVar = new RadTab();
RadTabVar.Text = Convert.ToString(DtBindScreenValue.Rows[i]["sDefaultName"]);
RadTabVar.Value = Convert.ToString(DtBindScreenValue.Rows[i]["aspxPageUrl"]);
RadTabVar.ImageUrl = Convert.ToString(DtBindScreenValue.Rows[i]["Image"]);
pnxWindowStrip.Tabs.Add(RadTabVar);
RadPageView pageView = new RadPageView();
pageView.ID = Convert.ToString(DtBindScreenValue.Rows[i]["sDefaultName"]);
PnxMultipageView.PageViews.Add(pageView);
RadTabVar.PageViewID = pageView.ID;
}
This is our page screen Shot. This page contain radtabstrip and Multipage control.
Please provide as a working sample with our requirement.
Thanks in advance.
Regards,