Unplanned
Last Updated: 08 Apr 2016 09:45 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 13 Jan 2015 16:27
Category: TreeView
Type: Bug Report
0
FIX. RadTreeView - when a RadTreeNode is disabled, the associated image with the node element is not disabled (grayed)
Workaround:

private void radTreeView1_NodeFormatting(object sender, Telerik.WinControls.UI.TreeNodeFormattingEventArgs e)
        {
            e.NodeElement.UseDefaultDisabledPaint = true;
        }
0 comments