Thread: Tree View
View Single Post
  #2  
Old 09-06-2011, 12:56 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
It's just a tree list.

Example from SQL Explorer:

PHP Code:
new GuiTreeViewCtrl("SQL_Data_DBs_Tree") {
  
profile GuiBlueTreeViewProfile;

  
0;
  
0;

  
fitparentwidth true;
  
horizSizing "width";

  
active false;

  
clearNodes();
  
addNode("Loading...");

later..

PHP Code:
with (SQL_Data_DBs_Tree) {
  
clearNodes();
  
active true;

  for (
temp.dbdata[0]) {
    
with (addNode(db[0])) {
      
this.expanded false;
      
      for (
temp.tabledb[1]) {
        
this.expanded false;

        
with (addNode(table[0])) {
          
this.database db[0];

          for (
temp.idxtable[1]) {
            
with (addNode(idx[0] @ " (" idx[1] @ ")")) {
              
image selectedimage 2;

              
this.indexName idx[0];
              
this.columns idx[1];
            }
          }
        }
      }
    }
  }
// lol 
__________________
Reply With Quote