| <telerik:RadComboBox ID="comboParent" runat="server"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| <ItemTemplate> |
| <div id="divParentProducts"> |
| <telerik:RadTreeView ID="treeParentProducts" runat="server" DataFieldID="ProductID" DataFieldParentID="ParentProductID" |
| DataSourceID="sqlProducts" DataTextField="ProductName" DataValueField="ProductID" OnClientNodeClicking="productClicking" |
| Skin="WebBlue"> |
| <CollapseAnimation Type="OutQuint" Duration="100"></CollapseAnimation> |
| <ExpandAnimation Duration="100"></ExpandAnimation> |
| </telerik:RadTreeView> |
| </div> |
| </ItemTemplate> |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="" /> |
| </Items> |
| </telerik:RadComboBox> |
| //Found this in another forum answer what would the "THE _ITEM_VALUE" Be in my scenario |
| RadComboBoxItem comboBoxItem = comboParent.FindItemByValue("THE_ITEM_VALUE"); |
| RadTreeView treeView = (RadTreeView)comboBoxItem.FindControl("treeProductHierarchy"); |
| TreeNode nodetoSelect = parentProducts.FindNode(selected.ParentProductID.ToString()); |
| nodetoSelect.Selected = true; |
editor.getToolByName(
"myButton").setState(-1);
But is there a way to GET it's state? I've tried a couple of things but no luck.
Thanks
David

Hi,
This is not a technical question but I need a suggestion
My target is to develop a customizable web-site.
A registered user can build his home page with many widget and he can drop from a list.
The position of these widgets will be save in a database.
I think to use the RadDock object for the container of widget and the functionalities of
RadDockManager for save the position of these widgets.
I think to save the information not in a cookie but in a record of the database.
I wanto to know if this scenario is possible with yours control and if there's example,site
or documentaion tha can help me with my project.
Thanks
Marco Bianchi