Adf.Web.Binding.TreeViewBinder.Bind C# (CSharp) Method

Bind() public method

Binds the specified System.Web.UI.WebControls.CheckBox with the specified list. Currently not being supported.
public Bind ( object control, IEnumerable values ) : void
control object The to bind to.
values IEnumerable The list to bind.
return void
        public void Bind(object control, IEnumerable values, params object[] p)
        {
            var tree = control as DropDownTreeView;
            if (tree == null) return;

            tree.Clear();

            tree.Bind(values.Cast<IDomainHierarchy>().ToList(), null);
        }

Same methods

TreeViewBinder::Bind ( object control, object values ) : void
TreeViewBinder::Bind ( object control, object value, PropertyInfo pi ) : void
TreeViewBinder