summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.5-sdk/frontend/application/sample/source/html/test/TreeVirtual_1.html
blob: 089aa0f5829d51200562ff58f3f80f6ee2653469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>qooxdoo &raquo; Demo &raquo; Sample</title>
  <link type="text/css" rel="stylesheet" href="../../css/layout.css"/>
  <!--[if IE]>
  <link type="text/css" rel="stylesheet" href="../../css/layout_ie.css"/>
  <![endif]-->
  <script type="text/javascript" src="../../script/sample.js"></script>
</head>
<body>
  <script type="text/javascript" src="../../script/layout.js"></script>

  <div id="demoDescription">
  <p>
    An example of using the Virtual Tree widget with addBranch() and addLeaf()
  </p>
  </div>

  <script type="text/javascript">
  qx.core.Init.getInstance().defineMain(function()
  {
    var d = qx.ui.core.ClientDocument.getInstance();


    var horiz =  new qx.ui.layout.HorizontalBoxLayout;
    
    horiz.setPadding(10);
    horiz.set({
        left:20, right:10, height:"100%", spacing:20
    });

    var tree = new qx.ui.treevirtual.TreeVirtual(["Objects", "Date", "ID"]);
    with (tree){
	setHeight ("100%");
        setWidth(900);
        setColumnWidth(0, 400)
        setColumnWidth(1, 200);
        setColumnWidth(2, 50);
    };

    var data_model = tree.getDataModel ();

    var object_folder =
	data_model.addBranch (null, 
			      "Test", 
			      false);

    data_model.addLeaf (object_folder, 
			"Test") ;
    
    data_model.setData();	

    if (false)
    {
	d.add (tree);
    }
    else
    {
	horiz.add (tree);
	d.add (horiz);
    }

  });
  </script>
</body>
</html>