I have created a radtreeview that uses node templates. Everything displays correctly with the Telerik controls like text box and combo box. The problem I am running into is when I use drop and drag to reorder the nodes. The drop and drag works perfectly on every node expect when a combo box has items in it. If I removed the items the drop and drag works just fine.
I am getting the following JavaScript error when I click on the node and start the drag.
IE 7.0: Invalid argument
Firefox:
function
Collapse()
{
//get the explorer tree
var explorerTree = $find("<%= rtvExplorer.ClientID %>");
//get the root node count
var nodeCount = explorerTree.get_nodes().get_count();
//loop through root node and collapse them
for (var loopCount=0; loopCount<nodeCount; loopCount++)
{
var node = explorerTree.get_nodes().getNode(loopCount);
alert("node text : " + node.get_text() + ", loopCount : " + loopCount + ", nodeCount : " + nodeCount);
node.set_expanded(
false);
}
//for
}
//function [Collapse]
Has anyone came across with this situation and found the solution???
Thanks and Regards,
Jaimin
RadGridLookupTable.GroupPanel.Text =
"MY TEST TEXT";
Both methods are called and execute, but the text still does NOT show up in the grid's group panel.
Any ideas where my text might be getting lost?
Thanks In Advance.
