I expand a node with the expandMode = TreeNodeExpandMode.WebService and it expands just fine, but the expandedImageURL doesn't change.
If I build out the tree as to not need the webserice, the expandedimageurl works properly. Am I doing something wrong or is this a bug?
RadTreeNode childNode = new RadTreeNode();
childNode.Text ="TITLE";
childNode.ImageUrl = "/images/theme1/closedfolder.gif";
childNode.ExpandedImageUrl = "/images/theme1/openfolder.gif";
childNode.ExpandMode = TreeNodeExpandMode.WebService;