asp.net - Override TreeNode in databound TreeView? -


i know if subclass treenode can add nodes collection within treeview. treeview working on @ moment databound, there way tell treeview type nodes should be?

thnaks,

joe

figured out. subclass treeview , override createnode method.

public class permissionstreeview : treeview {     protected override treenode createnode()     {         return new permissionstreenode();     } } 

Comments

Popular posts from this blog

php - Passing multiple values in a url using checkbox -

compilation - PHP install fails on Ubuntu 14 (make: *** [sapi/cli/php] Error 1) PHP 5.6.20 -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -