<telerik:RadButton ID="rbStandard" runat="server" ToggleType="Radio" GroupName="Radgrp" ButtonType="ToggleButton" AutoPostBack="false"> <ToggleStates><telerik:RadButtonToggleState Text="Standard" CssClass="ComicRed" />
<telerik:RadButtonToggleState Text="Standard" CssClass="ComicGreen" /></ToggleStates>
<telerik:RadButton ID="rbLite" runat="server" ToggleType="Radio" GroupName="Radgrp" ButtonType="ToggleButton" AutoPostBack="false"> <ToggleStates><telerik:RadButtonToggleState Text="Lite" CssClass="ComicRed" />
<telerik:RadButtonToggleState Text="Lite" CssClass="ComicGreen" /></ToggleStates>

RadTreeView was working fine when using Visual studio 2012, But it doesn't expand if we use Visual Studio 2015 in the same development PC.
Would anyone knows why this happen and how should we solve this issue?
Thank you!

Hi,
I'm trying to create a diagram with images programatically, I followed the demo http://demos.telerik.com/aspnet-ajax/diagram/examples/serverside/defaultcs.aspx and its ok. The problem is that the image only shows in the first shape.
The code is
<telerik:RadDiagram runat="server" ID="diagrama" > <LayoutSettings Type="Tree" Subtype="Right"/> <ShapeDefaultsSettings Type="Circle"/> </telerik:RadDiagram>
And .Net
for (int i = 0; i < 4; i++){ DiagramShape nodo = new DiagramShape(); nodo.Id = i.ToString(); String contenido = "<label>" + i.ToString() + "</Label>"; contenido += "<img src='FacturaPagada.png' />"; nodo.ContentSettings.Html = contenido; diagrama.ShapesCollection.Add(nodo); }

Hi,
the link below is not found.
I have this on a page with a radgrid skin Telerik.
http://aspnet-skins.telerikstatic.com/ajaxz/2017.2.711/Telerik/Grid/sprite.png
I have a ASP.NET webform project and want to add bootstrap. But I meet a problem for the RadTabStrip's RadTab with col-xs-6(bootstrap). The RadTabStrip's RadTabs are dynamically created by code. I also set the "col-xs-6 btn btn-primary" to RadTab's attriibute of "class". I wish I can see two columns RadTab per row in the size of xs(col-xs-6). But I still failed in the RadTab's color and arrange. Does somebody know how to solve this problem?
<telerik:RadTabStrip RenderMode="Lightweight" runat="server" ID="RadTabStripMenu" MultiPageID="RadMultiPageMenu" SelectedIndex="0" OnTabClick="RadTabStripMenu_TabClick">
for (int index = 0; index < dt.Rows.Count; index++){ string intOrderNo = dt.Rows[index]["intOrderNo"].ToString().Trim(); string chMenuItem = dt.Rows[index]["chMenuItem"].ToString().Trim(); string chDescritp = dt.Rows[index]["chMenuName"].ToString().Trim(); short tabIndex = Convert.ToInt16(chMenuItem.Substring(2, 3)); RadTab radTabItem = new RadTab(); radTabItem.Text = chDescritp; radTabItem.Value = tabIndex.ToString(); radTabItem.PageViewID = "RadPageViewMenu" + tabIndex.ToString(); radTabItem.Font.Size = new FontUnit(FontSize.Large); radTabItem.CssClass = "TabItem"; radTabItem.Attributes.Add("class", "col-xs-6 btn btn-primary"); RadTabStripMenu.Tabs.Add(radTabItem); RadTabStripMenu.DataBind();//add 20170504}

I need help making skins work. I want to use the skin black on radbuttons and radgrid. Every time I set skin to black I get a run time error."Telerik.Web.UI.RadWindow with ID='confirmWindow' was unable to find embedded skin with name 'Black'. Please, make sure that you spelled teh skin name correctly, or if you want to use a custom skin, set EnableEmbeddedSkins=false"
I have added the reference to the bin folder. I have tried a lot of different things to make this work and still not accomplishing it. Please help.
if (!IsPostBack) { GridColumnGroup columnGroup = new GridColumnGroup(); columnGroup.HeaderText = "Parent Header"; columnGroup.Name = "ParentHeader"; RadGridControl.MasterTableView.ColumnGroups.Add(columnGroup); }GridBoundColumn column = e.Column as GridBoundColumn; string columnName = column.HeaderText; //--------------> Error happens here on postback. if (columnName.Contains("Name")) { GridBoundColumn boundColumn = e.Column as GridBoundColumn; boundColumn.ColumnGroupName = "ParentHeader"; }