Currently there is no client side API to bind data from client side. Please add this feature.
Allow client side expand/collapse for RadTreeList
Your RadTreeList for ASP.NET AJAX is an amazing product but we would love to see more of the grid functionality implemented in it. Two very notable features from the RadGrid we would like to have in the RadTreeList are the "EnableHeaderContextMenu" so that we can hide and show columns on-demand and also column filtering capability. Please think about including these in future releases. Thanks, Curtis
RadTreeList control dose not support RTL format, please add this feature. check attachement.
This error occurs using version 2013.2.717.45 of Telerik.Web.UI.dll We are using a RadTreeList to display data with a three-part key. The control was set up with AllowLoadOnDemand="true", DataKeyNames="Key1,Key2,Key3", and ParentDataKeyNames="ParentKey1,ParentKey2,ParentKey3", and both the NeedDataSource and ChildItemsDataBind events were handled properly on the server side. Clicking the expand/collapse buttons resulted in erratic behavior -- sometimes, all nodes on a given level would be expanded or collapsed at once, sometimes, the entire tree would collapse and not be able to be expanded again, and occasionally the desired node would expand or collapse as desired. I tracked the problem (using JustDecompile) to a bug in TreeListLoadOnDemandContext.ItemNeedsToBeExpanded. The same bug appears to be in ItemNeedsToBeSelected, RemoveExpandedDataKeyValue, and RemoveSelectedDataKeyValue as well. In all four cases, the code loops through the data keys comparing one to the next -- but overwrites its flag on each iteration. In other words, it doesn't check if ALL keys are equal, only if the last one compared is equal. I added "Key" and "ParentKey" fields to the data object that combined all three fields into a single struct, so that the control now has DataKeyNames="Key" and ParentDataKeyNames="Parent", and it now works properly.
When using LoadOnDemand in a RadTreeList, it would be great to have it automatically expand to a selected item when initially loading on a page.
We use the TreeList control in our ASP .NET 4, C# application (running on Internet Explorer). In a page we have a Repeater of Update Panels. Each Update Panel contains a TreeList. All TreeLists have the same behaviour. They have multiple sorting enabled, and by default they are sorted by 2 columns (Class, ID). When sorting by some other column (Example: State), we adjust the Sorting Expressions from (Class, ID, State) to (State, ID). The sorting icon is not visible on the State column, but we have a simple button with no text on the Class column.
This functionality would aggregate a lot of value to the RadTreeList. I will explain you why it is important. In order to prepare the information to give it to the TreeList, it is necessary to make a lot of hierarchical calculations that consume a lot of CPU and memory resources. It causes that any server could be busy doing the same complex calculations with each click expanding any level. If you have a lot of users that expands a node of the tree, the server could crash. I prefer, RadTreeList had all the information one time to prevent making unnecessary recalcularions with every click. I like Telerik components, but this issue make me to search another tree component in the market. Please reconsider this functionality in your next version of your RadTreeList.