summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/List_3.html
blob: 0ce48f05551f2f26c0366c6145a07e3441882f77 (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
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>qooxdoo &raquo; Demo</title>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
  <!--[if IE]>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
  <![endif]-->
  <script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
  <script type="text/javascript" src="../../script/layout.js"></script>

  <div id="demoDescription">
    <p>qx.ui.form.List Item Sorting demo</p>
  </div>

  <script type="text/javascript">
   
    qx.core.Init.getInstance().defineMain(function() {
        var list = new qx.ui.form.List(); list.set({top:50,left:50,height:150,width:100});
        
        list.add(new qx.ui.form.ListItem('Will',null,'1'));
        list.add(new qx.ui.form.ListItem('Anna',null,'2'));
        list.add(new qx.ui.form.ListItem('Tom',null,'3'));
        list.add(new qx.ui.form.ListItem('Diana',null,'4'));
        list.add(new qx.ui.form.ListItem('Pete',null,'5'));
        list.add(new qx.ui.form.ListItem('Carol',null,'6'));
        
        var btn1 = new qx.ui.form.Button('Sort By Label'); btn1.set({top:50,left:200});
        btn1.addEventListener('click',function(e){
            list.sortItemsByString();
        });

        var btn2 = new qx.ui.form.Button('Sort By Label Reverse'); btn2.set({top:80,left:200});
        btn2.addEventListener('click',function(e){
            list.sortItemsByString(true);
        });

        var btn3 = new qx.ui.form.Button('Sort By Value'); btn3.set({top:140,left:200});
        btn3.addEventListener('click',function(e){
            list.sortItemsByValue();
        });

        var btn4 = new qx.ui.form.Button('Sort By Value Reverse'); btn4.set({top:170,left:200});
        btn4.addEventListener('click',function(e){
            list.sortItemsByValue(true);
        });

        qx.ui.core.ClientDocument.getInstance().add(btn1,btn2,btn3,btn4);
        qx.ui.core.ClientDocument.getInstance().add(list);
    });
  </script>
</body>
</html>