Hi there,
We're using Org Chart with enable drill down and load on demand and data bind in code behind file.
Org Chart also have zooming feature ON.
When exporting char to pdf it only show NODES but there in not links/lines between nodes.
But if we disabled zooming it work well.
Any idea please?

Hi,
Im having an issue trying to bind to a linq anonymous type. I can bind find as long as i don't specify a 'DataFieldParentID', if i specify that DataFieldParentID then the dropdowntree control just displays no items.
So if i comment out the line below: rdt.DataFieldParentID = "ParentID"; then the control loads fine with the options i expect and i am able to select and use them fine, it simply seems to be an issue when trying to create a hierarchy.
My drop down tree control is inside a RadListView and i am binding on the ItemDataBound event, my code for binding if the following:
var x = from y in services select new { ID = y.ID, ParentID = y.PrimaryWorkType.ID, myText = y.Description};RadDropDownTree rdt = (RadDropDownTree)e.Item.FindControl("ddlAffectedServices");rdt.DataTextField = "myText";rdt.DataValueField = "ID";rdt.DataFieldID = "ID";rdt.DataFieldParentID = "ParentID";rdt.DataSource = x;rdt.DataBind();

Good Day
Please help,
How can i format the date when exporting treelist data to excel, using Telerik version 2013.3.1324.40.

function
EnableDisable() {
button2 = document.getElementById("RadButton2_input");
button2.disabled = false;
}
Private Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommandIf e.CommandName = RadGrid.EditCommandName Then Dim editItem As GridEditableItem = CType(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem) For Each column As GridColumn In RadGrid1.MasterTableView.Columns If column.UniqueName = "POL" Then Dim txtbox As TextBox = CType(editItem (column.UniqueName).Controls(0), TextBox) txtbox.ReadOnly = True End If NextEnd IfEnd SubIf e.CommandName = RadGrid.EditCommandName Then Dim editItem As GridEditableItem = CType(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem)Hello,
I have a radGrid wich has detailtables and gridTableView to show the information grouped. The problem is that i lost the item style of the detail tables when a expand one level (in columnCreated event is on i set the width properties of the columns) event. I use autogeneratedcolumn.
Any idea?
thanks!