Hi,
I faced a problem while collapsing node on client side. Consider following example: There are 3 root nodes in the tree when I click on collapse button the below function executes but it only collapses the first expanded node. The below function is taken from the Rad examples only...
Secnario:
R1
C1R1
C2R2
R2
C1R2
C2R2
R3
C1R3
When I click on collapse button only first node collapses and tree looks like:
R1
R2
C1R2
C2R2
R3
C1R3
When I again click on collapse button second node collapses and tree looks like:
R1
R2
R3
C1R3
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
We found we've introduced a glitch in the new skinning model of RadUpload in the RadControls Q2 2008 (Telerik.Web.UI v 2008.2.723) package.
The symptoms:
The browse dialog box does not open when you click the Select button. This happens when one of the parent elements of RadUpload is absolutely/relatively positioned.
Cause:
The file input is not positioned properly when a parent element of RadUpload is absolutely/relatively positioned.
Fix:
If the application design allows that, remove the relative/absolute positioning of the RadUpload parent element. If not, attached is the trial fix. Please, open a formal support ticket and ask for the fix to obtain a dev version.
*EDIT*: Attached is the latest build which contains additional fixes of the problem with FieldSet, ModulPopupExtender and RadProgressArea not showing in custom monitoring scenario.