Home - Forums-.NET - FlyGrid.Net (Windows Forms) - CheckBox for some of tree nodes

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

CheckBox for some of tree nodes
Link Posted: 06-Dec-2005 02:49
Hi,

Is there a way to create a tree when some of the nodes has checkboxes and some of them don't?
We realy need such an ability.

thanks,

Oren.
Link Posted: 07-Dec-2005 01:07
In the nearest FlyGrid.Net update you can easily implement this possibility:
[C#]
public class SelectiveShowCheckBoxesColumn : HierarchyColumn
{

  public SelectiveShowCheckBoxesColumn () : base()  
  {
  }
  public SelectiveShowCheckBoxesColumn (string name) : base(name)
  {
  }
  public SelectiveShowCheckBoxesColumn (string name, string fieldName) : base(name, fieldName)
  {
  }
  
  protected override bool ShouldPaintCheckBox(NodeBase node)
  {
    return base.ShouldPaintCheckBox(node) && IsNodeWithCheckbox(node);
  }
  
  private bool IsNodeWithCheckbox(NodeBase node)
  {
    //hide checkboxes on the root nodes
    return node.Depth > 0;
  }
}