I have a hierarchy grid that has 6 detail tables. All the data for the grid is bound in code behind.
I need to create custom insert, edit and delete templates for each of the detail tables. The information I have found has the datasource client side. I need information to create these server side.
Is it possible to use .NET themes with RadStyleSheetManager?
When I use a RadStyleSheetManager to combine my external stylesheets, it places the WebResource file AFTER the .NET themes stylesheet in the Head tag, with the result that the theme I'm trying to apply from the App_Themes folder is overridden by the base styles in the external stylesheets combined by the Telerik control. As in:
<head>
<link href="../App_Themes/Demo_Theme/Demo_Theme.css" type="text/css" rel="stylesheet">
<link href="/QReg/Telerik.Web.UI.WebResource.axd?d=PMrIT5dOWaVYIcpFWUE4nL08EMI2VcWAw0rknd-hZDTwvbi5j9SontBAefw4vSph5ju3TcQNZ2u3pCuQ6PYF0RLbspBmxlwTBIWwYaZtNs3fJnQ30&t=635918753441826527&compress=1&_TSM_CombinedScripts_=%3b%3b%7c635941629785528787%3ab27e5558%3a59f3f810%3a95dff68a%3a74ee2317%3a6cdcd2e9%3a6581de0b%3a88af4fc4" type="text/css" rel="stylesheet">
</head>
Is there a way to get the StyleSheetManager to place its webresource file before the .NET themes file?
Thanks
Hello,
My special scenario is as follows:
A topMenu with sublinks and a boxmenu with this sublinks on the page. I don't want to show the sublinks as expanded dropdown in the topMenu. The user should only one click on the top menu to reach the subpage, where the boxMenu will be visible. The links on the box menu should be "connected" with the topMenu to let the topLink as marked.
So my idea, let the topMenu expanding disabled. I have created two sitemapProviders web.sitemapTop and web.siteMapBox with the related structure.
With "expanding" the top-menu, all works fine. But I want to avoid expanding the TopMenu because of design-reasons (surely a bit user unfriendly...).
When I delete the submenuItems from the TopSiteMap, the boxLinks don't let the TopMenuLink as marked...
How can I disable the expand functionality of a radmenu (asp.net)?
Thanks in advance.
regards,
lux

<telerik:RadTab runat="server" Value="ADM110_DepotAdminManage_Tab" Text="Depot" PageViewID="RadPageView_ADM110_DepotAdminManage" />
<telerik:RadPageView ID="RadPageView_ADM110_DepotAdminManage" runat="server" ContentUrl="ADM110_DepotAdminManage.aspx" Height="90%" > </telerik:RadPageView>
Hi I have following structure of code
Global.asax - conytains URL Routing as it is
-------------------------------------------------------------------
routes.MapPageRoute("Company",
"/Health/Company/{ID}/{Name}",
"~/Health/company/CompanyPro.aspx"
);
Company.master contains tabstrip and iam creating the Dynamic url url1 url2 etc. Hoe can i assign this url to tab strip url through javascript ?
-----------------------------------------------------
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
<script type="text/javascript">
...........
var url1 = String.format('/Health/Company/{0}/{1}/{2}', clientid, name);
var url2 = --- Some URL ---
</script>
please help
</telerik:RadScriptBlock>
<telerik:RadTabStrip ID="radTabMain" runat="server" Width="100%" OnTabClick="radTabMain_TabClick">
<Tabs>
<telerik:RadTab Text="Home" runat="server" Url="">
</telerik:RadTab>
<telerik:RadTab Text="AboutUs" runat="server" Url="">
</telerik:RadTab>
<telerik:RadTab Text="Contact Us" runat="server" Url="">
</telerik:RadTab>
<telerik:RadTab Text="Feedback" runat="server" Url="">
</telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>

Hi, I want users to upload excel sheets in predefined manner which we already defined to them.
Upon upload, we would need to validate and save to database.
i think I can use radupload to upload it, but how to mark cells in red which are not valid
For example, say a cell for last name is empty or birthdate is not in correct format,etc
Appreciate if you can give approach to this or sample code
Thanks
Swetha
Hi,
We are using scheduler and works great.
We have a new requirement where a person can create appointment for anyone.
Can we add a drop down in the appointment options to select which person this appointment is created for?
Thanks
Hello,
Is there some working sample of a RadGrid with EditFormType = "WebUserControl" and where this UserControl contains a combobox with EnableLoadOnDemand = true? The issue I'm facing in this scenario is that when I try to set selectedValue of the combo in code behind using OnDataBinding handler or in markup using <%#%> tags, inside the user control, I get "selection out of range" exception when radgrid is binding. In other threads it's suggested to set RadComboBox.SelectedValue in RadGrid.ItemDataBound handler, but I would rather keep initialization inside the user control.
Thank you!