Advertisement
Guest User

overnested panel Ext 3 / Ext 4

a guest
May 17th, 2011
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Ext.onReady(function() {
  2.     var test;
  3.    
  4.     console.time('test');
  5.     testConfig = {
  6.             layout  : 'border',
  7.             renderTo:  Ext.getBody(),
  8.             items   : [
  9.                 {
  10.                     xtype   : 'panel',
  11.                     region  : 'center',
  12.                     items : [
  13.                             {itemId:'panel1',title:'panel1',xtype:'panel',items:[{title:'inner1'}]}
  14.                           ]
  15.                 },
  16.                 {
  17.                     xtype       : 'panel',
  18.                     title       : 'search bar',
  19.                     titleCollapse   : true,
  20.                     hideBorders     : true,
  21.                     autoScroll      : true,                
  22.                     region      : 'west',
  23.                     layout      : 'accordion',
  24.                     id          : 'westbar',
  25.                     width       : 200,
  26.                     items       : testPanelItems
  27.                 }
  28.             ]
  29.     };
  30.  
  31.    
  32.     if(Ext.version == '3.3.0'){
  33.         test = new Ext.Viewport(testConfig);
  34.     }
  35.     else{
  36.         test = Ext.create('Ext.Viewport', testConfig);
  37.     }
  38.    
  39.    
  40.     // test.show();
  41.     console.timeEnd('test');
  42.    
  43.     console.time('test2');
  44.     test.doLayout();
  45.     console.timeEnd('test2');
  46.    
  47.    
  48. });
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. var testPanelItems = [
  57.     {
  58.         xtpye : 'panel',
  59.         title:'panel one',
  60.         collapsed:true,
  61.         collapsible:true
  62.     },
  63.     {
  64.         xtpye : 'panel',
  65.         title:'panel one',
  66.         collapsed:true,
  67.         collapsible:true
  68.     },
  69.     {
  70.         xtype   : 'panel',
  71.         title   : 'overnested panel',
  72.         hideBorders: true,
  73.         id      : 'search_panel',
  74.         items : [
  75.         {
  76.             xtype           : 'form',
  77.             title           : 'search field',
  78.             collapsible     : true,
  79.             titleCollapse   : true,
  80.             padding : 4,
  81.             items : [
  82.                 {
  83.                     xtype   : 'textfield',
  84.                    name     : 'test_nr'
  85.                },
  86.                {
  87.                    xtype    : 'hidden',
  88.                    name     : 'filter_list',
  89.                    value    : 'all'
  90.                },                        
  91.                {
  92.                    xtype    : 'button',
  93.                    text     : 'search'
  94.                }
  95.               ]
  96.         },
  97.         {
  98.             xtype: 'panel',
  99.             padding : 4,
  100.             items: [
  101.                 {
  102.                     xtype       : 'panel',
  103.                     title       : 'your choice',
  104.                     collapsible : true,
  105.                     titleCollapse: true,
  106.                     hideBorders : true,
  107.                    
  108.                     items :[{
  109.                         xtype       : 'panel',
  110.                         hideBorders : true,
  111.                         items : [
  112.                             {
  113.                                 xtype           : 'radiogroup',
  114.                                 title           : 'selection',
  115.                                 collapsible     : true,
  116.                                 titleCollapse   : true,
  117.                                 hideBorders     : true,
  118.                                 name            : 'filter_list',
  119.                                 items           : [{
  120.                                         'xtype'     : 'radio',
  121.                                         hideBorders : true,
  122.                                         boxLabel    : 'use selection one',
  123.                                         name        : 'choice_of_list'
  124.                                     },{
  125.                                         'xtype'     : 'radio',
  126.                                         hideBorders : true,
  127.                                         boxLabel    : 'use selection two',
  128.                                         name        : 'choice_of_list'
  129.                                     }]
  130.                             },
  131.                             {
  132.                                 xtype : 'panel',
  133.                                 title : 'detail choise',
  134.                                 autoScroll  : true,
  135.                                         items : [
  136.                                        {
  137.                                           "xtype"       :"panel",
  138.                                           collapsible   : true,
  139.                                           titleCollapse : true,
  140.                                           collapsed     : true,
  141.                                           "hideBorders" :true,
  142.                                           "items":[
  143.                                              {
  144.                                                 "xtype":"checkbox",
  145.                                                 "boxLabel":"Testbox 1",
  146.                                                 "name":"testbox1",
  147.                                                 "inputValue":"1"
  148.                                              },
  149.                                              {
  150.                                                 "xtype":"checkbox",
  151.                                                 "boxLabel":"Testbox 2",
  152.                                                 "name":"testbox2",
  153.                                                 "inputValue":"2"
  154.                                              },
  155.                                              {
  156.                                                 "xtype":"checkbox",
  157.                                                 "boxLabel":"Testbox 5",
  158.                                                 "name":"testbox5",
  159.                                                 "inputValue":"5"
  160.                                              }
  161.                                           ],
  162.                                           "width":150
  163.                                        },
  164.                                        {
  165.                                           "xtype":"panel",
  166.                                           "collapsible"     : true,
  167.                                           "titleCollapse"   :true,
  168.                                           "collapsed"       : true,                                                          
  169.                                           "hideBorders"     :true,
  170.                                           "items":[
  171.                                              {
  172.                                                 "xtype":"checkbox",
  173.                                                 "boxLabel":"Testbox 1",
  174.                                                 "name":"testbox1",
  175.                                                 "inputValue":"1"
  176.                                              },
  177.                                              {
  178.                                                 "xtype":"checkbox",
  179.                                                 "boxLabel":"Testbox 2",
  180.                                                 "name":"testbox2",
  181.                                                 "inputValue":"2"
  182.                                              },
  183.                                              {
  184.                                                 "xtype":"checkbox",
  185.                                                 "boxLabel":"Testbox 3",
  186.                                                 "name":"testbox3",
  187.                                                 "inputValue":"3"
  188.                                              },
  189.                                              {
  190.                                                 "xtype":"checkbox",
  191.                                                 "boxLabel":"Testbox 13",
  192.                                                 "name":"testbox13",
  193.                                                 "inputValue":"13"
  194.                                              }
  195.                                           ],
  196.                                           "width":150
  197.                                        },
  198.                                        {
  199.                                           "xtype":"panel",
  200.                                           "collapsible"  : true,
  201.                                           "titleCollapse": true,
  202.                                           "collapsed"    : true,
  203.                                           "hideBorders":true,
  204.                                           "items":[
  205.                                              {
  206.                                                 "xtype":"checkbox",
  207.                                                 "boxLabel":"Testbox 1",
  208.                                                 "name":"testbox1",
  209.                                                 "inputValue":"1"
  210.                                              },
  211.                                              {
  212.                                                 "xtype":"checkbox",
  213.                                                 "boxLabel":"Testbox 2",
  214.                                                 "name":"testbox2",
  215.                                                 "inputValue":"2"
  216.                                              },
  217.                                              {
  218.                                                 "xtype":"checkbox",
  219.                                                 "boxLabel":"Testbox 3",
  220.                                                 "name":"testbox3",
  221.                                                 "inputValue":"3"
  222.                                              },
  223.                                              {
  224.                                                 "xtype":"checkbox",
  225.                                                 "boxLabel":"Testbox 4",
  226.                                                 "name":"testbox4",
  227.                                                 "inputValue":"4"
  228.                                              },
  229.                                              {
  230.                                                 "xtype":"checkbox",
  231.                                                 "boxLabel":"Testbox 5",
  232.                                                 "name":"testbox5",
  233.                                                 "inputValue":"5"
  234.                                              }
  235.                                           ],
  236.                                           "width":150
  237.                                        },
  238.                                        {
  239.                                           "xtype":"panel",
  240.                                           "collapsible"  : true,
  241.                                           "titleCollapse": true,
  242.                                           "collapsed"    : true,
  243.                                           "hideBorders":true,
  244.                                           "items":[
  245.                                              {
  246.                                                 "xtype":"checkbox",
  247.                                                 "boxLabel":"Testbox 1",
  248.                                                 "name":"testbox1",
  249.                                                 "inputValue":"1"
  250.                                              },
  251.                                              {
  252.                                                 "xtype":"checkbox",
  253.                                                 "boxLabel":"Testbox 112",
  254.                                                 "name":"testbox112",
  255.                                                 "inputValue":"112"
  256.                                              },
  257.                                              {
  258.                                                 "xtype":"checkbox",
  259.                                                 "boxLabel":"Testbox 117",
  260.                                                 "name":"testbox117",
  261.                                                 "inputValue":"117"
  262.                                              }
  263.                                           ],
  264.                                           "width":150
  265.                                        },
  266.                                        {
  267.                                           "xtype":"panel",
  268.                                           "collapsible"  : true,
  269.                                           "titleCollapse": true,
  270.                                           "collapsed"    : true,
  271.                                           "hideBorders":true,
  272.                                           "items":[
  273.                                              {
  274.                                                 "xtype":"checkbox",
  275.                                                 "boxLabel":"Testbox -1",
  276.                                                 "name":"testbox-1",
  277.                                                 "inputValue":"-1"
  278.                                              },
  279.                                              {
  280.                                                 "xtype":"checkbox",
  281.                                                 "boxLabel":"Testbox 2010-06-30",
  282.                                                 "name":"testbox2010-06-30",
  283.                                                 "inputValue":"2010-06-30"
  284.                                              },
  285.                                              {
  286.                                                 "xtype":"checkbox",
  287.                                                 "boxLabel":"Testbox 2010-10-05",
  288.                                                 "name":"testbox2010-10-05",
  289.                                                 "inputValue":"2010-10-05"
  290.                                              },
  291.                                              {
  292.                                                 "xtype":"checkbox",
  293.                                                 "boxLabel":"Testbox 2010-11-15",
  294.                                                 "name":"testbox2010-11-15",
  295.                                                 "inputValue":"2010-11-15"
  296.                                              },
  297.                                              {
  298.                                                 "xtype":"checkbox",
  299.                                                 "boxLabel":"Testbox 2011-02-10",
  300.                                                 "name":"testbox2011-02-10",
  301.                                                 "inputValue":"2011-02-10"
  302.                                              },
  303.                                              {
  304.                                                 "xtype":"checkbox",
  305.                                                 "boxLabel":"Testbox 2011-03-22",
  306.                                                 "name":"testbox2011-03-22",
  307.                                                 "inputValue":"2011-03-22"
  308.                                              },
  309.                                              {
  310.                                                 "xtype":"checkbox",
  311.                                                 "boxLabel":"Testbox 2011-03-28",
  312.                                                 "name":"testbox2011-03-28",
  313.                                                 "inputValue":"2011-03-28"
  314.                                              },
  315.                                              {
  316.                                                 "xtype":"checkbox",
  317.                                                 "boxLabel":"Testbox 2011-04-28",
  318.                                                 "name":"testbox2011-04-28",
  319.                                                 "inputValue":"2011-04-28"
  320.                                              }
  321.                                           ],
  322.                                           "width":150
  323.                                        },
  324.                                        {
  325.                                           "xtype":"panel",
  326.                                           "collapsible"  : true,
  327.                                           "titleCollapse": true,
  328.                                           "collapsed"    : true,
  329.                                           "hideBorders":true,
  330.                                           "items":[
  331.                                              {
  332.                                                 "xtype":"checkbox",
  333.                                                 "boxLabel":"Testbox -1",
  334.                                                 "name":"testbox-1",
  335.                                                 "inputValue":"-1"
  336.                                              },
  337.                                              {
  338.                                                 "xtype":"checkbox",
  339.                                                 "boxLabel":"Testbox 2010-06-30",
  340.                                                 "name":"testbox2010-06-30",
  341.                                                 "inputValue":"2010-06-30"
  342.                                              },
  343.                                              {
  344.                                                 "xtype":"checkbox",
  345.                                                 "boxLabel":"Testbox 2010-10-05",
  346.                                                 "name":"testbox2010-10-05",
  347.                                                 "inputValue":"2010-10-05"
  348.                                              },
  349.                                              {
  350.                                                 "xtype":"checkbox",
  351.                                                 "boxLabel":"Testbox 2010-11-15",
  352.                                                 "name":"testbox2010-11-15",
  353.                                                 "inputValue":"2010-11-15"
  354.                                              },
  355.                                              {
  356.                                                 "xtype":"checkbox",
  357.                                                 "boxLabel":"Testbox 2011-02-10",
  358.                                                 "name":"testbox2011-02-10",
  359.                                                 "inputValue":"2011-02-10"
  360.                                              },
  361.                                              {
  362.                                                 "xtype":"checkbox",
  363.                                                 "boxLabel":"Testbox 2011-03-22",
  364.                                                 "name":"testbox2011-03-22",
  365.                                                 "inputValue":"2011-03-22"
  366.                                              },
  367.                                              {
  368.                                                 "xtype":"checkbox",
  369.                                                 "boxLabel":"Testbox 2011-03-28",
  370.                                                 "name":"testbox2011-03-28",
  371.                                                 "inputValue":"2011-03-28"
  372.                                              },
  373.                                              {
  374.                                                 "xtype":"checkbox",
  375.                                                 "boxLabel":"Testbox 2011-04-28",
  376.                                                 "name":"testbox2011-04-28",
  377.                                                 "inputValue":"2011-04-28"
  378.                                              }
  379.                                           ],
  380.                                           "width":150
  381.                                        },
  382.                                        {
  383.                                           "xtype":"panel",
  384.                                           "collapsible"  : true,
  385.                                           "titleCollapse": true,
  386.                                           "collapsed"    : true,
  387.                                           "hideBorders":true,
  388.                                           "items":[
  389.                                              {
  390.                                                 "xtype":"checkbox",
  391.                                                 "boxLabel":"Testbox -1",
  392.                                                 "name":"testbox-1",
  393.                                                 "inputValue":"-1"
  394.                                              },
  395.                                              {
  396.                                                 "xtype":"checkbox",
  397.                                                 "boxLabel":"Testbox 2010-06-28",
  398.                                                 "name":"testbox2010-06-28",
  399.                                                 "inputValue":"2010-06-28"
  400.                                              },
  401.                                              {
  402.                                                 "xtype":"checkbox",
  403.                                                 "boxLabel":"Testbox 2010-10-04",
  404.                                                 "name":"testbox2010-10-04",
  405.                                                 "inputValue":"2010-10-04"
  406.                                              },
  407.                                              {
  408.                                                 "xtype":"checkbox",
  409.                                                 "boxLabel":"Testbox 2010-11-15",
  410.                                                 "name":"testbox2010-11-15",
  411.                                                 "inputValue":"2010-11-15"
  412.                                              },
  413.                                              {
  414.                                                 "xtype":"checkbox",
  415.                                                 "boxLabel":"Testbox 2011-02-07",
  416.                                                 "name":"testbox2011-02-07",
  417.                                                 "inputValue":"2011-02-07"
  418.                                              },
  419.                                              {
  420.                                                 "xtype":"checkbox",
  421.                                                 "boxLabel":"Testbox 2011-03-21",
  422.                                                 "name":"testbox2011-03-21",
  423.                                                 "inputValue":"2011-03-21"
  424.                                              },
  425.                                              {
  426.                                                 "xtype":"checkbox",
  427.                                                 "boxLabel":"Testbox 2011-03-28",
  428.                                                 "name":"testbox2011-03-28",
  429.                                                 "inputValue":"2011-03-28"
  430.                                              },
  431.                                              {
  432.                                                 "xtype":"checkbox",
  433.                                                 "boxLabel":"Testbox 2011-04-25",
  434.                                                 "name":"testbox2011-04-25",
  435.                                                 "inputValue":"2011-04-25"
  436.                                              }
  437.                                           ],
  438.                                           "width":150
  439.                                        },
  440.                                        {
  441.                                           "xtype":"panel",
  442.                                           "collapsible"  : true,
  443.                                           "titleCollapse": true,
  444.                                           "collapsed"    : true,
  445.                                           "hideBorders":true,
  446.                                           "items":[
  447.                                              {
  448.                                                 "xtype":"checkbox",
  449.                                                 "boxLabel":"Testbox -1",
  450.                                                 "name":"testbox-1",
  451.                                                 "inputValue":"-1"
  452.                                              },
  453.                                              {
  454.                                                 "xtype":"checkbox",
  455.                                                 "boxLabel":"Testbox 2010-07-04",
  456.                                                 "name":"testbox2010-07-04",
  457.                                                 "inputValue":"2010-07-04"
  458.                                              },
  459.                                              {
  460.                                                 "xtype":"checkbox",
  461.                                                 "boxLabel":"Testbox 2010-10-10",
  462.                                                 "name":"testbox2010-10-10",
  463.                                                 "inputValue":"2010-10-10"
  464.                                              },
  465.                                              {
  466.                                                 "xtype":"checkbox",
  467.                                                 "boxLabel":"Testbox 2010-11-21",
  468.                                                 "name":"testbox2010-11-21",
  469.                                                 "inputValue":"2010-11-21"
  470.                                              },
  471.                                              {
  472.                                                 "xtype":"checkbox",
  473.                                                 "boxLabel":"Testbox 2011-02-13",
  474.                                                 "name":"testbox2011-02-13",
  475.                                                 "inputValue":"2011-02-13"
  476.                                              },
  477.                                              {
  478.                                                 "xtype":"checkbox",
  479.                                                 "boxLabel":"Testbox 2011-03-27",
  480.                                                 "name":"testbox2011-03-27",
  481.                                                 "inputValue":"2011-03-27"
  482.                                              },
  483.                                              {
  484.                                                 "xtype":"checkbox",
  485.                                                 "boxLabel":"Testbox 2011-04-03",
  486.                                                 "name":"testbox2011-04-03",
  487.                                                 "inputValue":"2011-04-03"
  488.                                              },
  489.                                              {
  490.                                                 "xtype":"checkbox",
  491.                                                 "boxLabel":"Testbox 2011-05-01",
  492.                                                 "name":"testbox2011-05-01",
  493.                                                 "inputValue":"2011-05-01"
  494.                                              }
  495.                                           ],
  496.                                           "width":150
  497.                                        },
  498.                                        {
  499.                                           "xtype":"panel",
  500.                                           "collapsible"  : true,
  501.                                           "titleCollapse": true,
  502.                                           "collapsed"    : true,
  503.                                           "hideBorders":true,
  504.                                           "items":[
  505.                                              {
  506.                                                 "xtype":"checkbox",
  507.                                                 "boxLabel":"Testbox 53",
  508.                                                 "name":"testbox53",
  509.                                                 "inputValue":"53"
  510.                                              },
  511.                                              {
  512.                                                 "xtype":"checkbox",
  513.                                                 "boxLabel":"Testbox 58",
  514.                                                 "name":"testbox58",
  515.                                                 "inputValue":"58"
  516.                                              },
  517.                                              {
  518.                                                 "xtype":"checkbox",
  519.                                                 "boxLabel":"Testbox 98",
  520.                                                 "name":"testbox98",
  521.                                                 "inputValue":"98"
  522.                                              },
  523.                                              {
  524.                                                 "xtype":"checkbox",
  525.                                                 "boxLabel":"Testbox 112",
  526.                                                 "name":"testbox112",
  527.                                                 "inputValue":"112"
  528.                                              },
  529.                                              {
  530.                                                 "xtype":"checkbox",
  531.                                                 "boxLabel":"Testbox 113",
  532.                                                 "name":"testbox113",
  533.                                                 "inputValue":"113"
  534.                                              },
  535.                                              {
  536.                                                 "xtype":"checkbox",
  537.                                                 "boxLabel":"Testbox 114",
  538.                                                 "name":"testbox114",
  539.                                                 "inputValue":"114"
  540.                                              }
  541.                                           ],
  542.                                           "width":150
  543.                                        },
  544.                                        {
  545.                                           "xtype":"panel",
  546.                                           "collapsible"  : true,
  547.                                           "titleCollapse": true,
  548.                                           "collapsed"    : true,
  549.                                           "hideBorders":true,
  550.                                           "items":[
  551.                                              {
  552.                                                 "xtype":"checkbox",
  553.                                                 "boxLabel":"Testbox 1",
  554.                                                 "name":"testbox1",
  555.                                                 "inputValue":"1"
  556.                                              },
  557.                                              {
  558.                                                 "xtype":"checkbox",
  559.                                                 "boxLabel":"Testbox 3",
  560.                                                 "name":"testbox3",
  561.                                                 "inputValue":"3"
  562.                                              },
  563.                                              {
  564.                                                 "xtype":"checkbox",
  565.                                                 "boxLabel":"Testbox 4",
  566.                                                 "name":"testbox4",
  567.                                                 "inputValue":"4"
  568.                                              },
  569.                                              {
  570.                                                 "xtype":"checkbox",
  571.                                                 "boxLabel":"Testbox 8",
  572.                                                 "name":"testbox8",
  573.                                                 "inputValue":"8"
  574.                                              },
  575.                                              {
  576.                                                 "xtype":"checkbox",
  577.                                                 "boxLabel":"Testbox 9",
  578.                                                 "name":"testbox9",
  579.                                                 "inputValue":"9"
  580.                                              }
  581.                                           ],
  582.                                           "width":150
  583.                                        },
  584.                                        {
  585.                                           "xtype":"panel",
  586.                                           "collapsible"  : true,
  587.                                           "titleCollapse": true,
  588.                                           "collapsed"    : true,
  589.                                           "hideBorders":true,
  590.                                           "items":[
  591.                                              {
  592.                                                 "xtype":"checkbox",
  593.                                                 "boxLabel":"Testbox 1",
  594.                                                 "name":"testbox1",
  595.                                                 "inputValue":"1"
  596.                                              },
  597.                                              {
  598.                                                 "xtype":"checkbox",
  599.                                                 "boxLabel":"Testbox 2",
  600.                                                 "name":"testbox2",
  601.                                                 "inputValue":"2"
  602.                                              },
  603.                                              {
  604.                                                 "xtype":"checkbox",
  605.                                                 "boxLabel":"Testbox 4",
  606.                                                 "name":"testbox4",
  607.                                                 "inputValue":"4"
  608.                                              }
  609.                                           ],
  610.                                           "width":150
  611.                                        },
  612.                                        {
  613.                                           "xtype":"panel",
  614.                                           "collapsible"  : true,
  615.                                           "titleCollapse": true,
  616.                                           "collapsed"    : true,
  617.                                           "hideBorders":true,
  618.                                           "items":[
  619.                                              {
  620.                                                 "xtype":"checkbox",
  621.                                                 "boxLabel":"Testbox 1",
  622.                                                 "name":"testbox1",
  623.                                                 "inputValue":"1"
  624.                                              },
  625.                                              {
  626.                                                 "xtype":"checkbox",
  627.                                                 "boxLabel":"Testbox 6",
  628.                                                 "name":"testbox6",
  629.                                                 "inputValue":"6"
  630.                                              },
  631.                                              {
  632.                                                 "xtype":"checkbox",
  633.                                                 "boxLabel":"Testbox 7",
  634.                                                 "name":"testbox7",
  635.                                                 "inputValue":"7"
  636.                                              },
  637.                                              {
  638.                                                 "xtype":"checkbox",
  639.                                                 "boxLabel":"Testbox 8",
  640.                                                 "name":"testbox8",
  641.                                                 "inputValue":"8"
  642.                                              },
  643.                                              {
  644.                                                 "xtype":"checkbox",
  645.                                                 "boxLabel":"Testbox 9",
  646.                                                 "name":"testbox9",
  647.                                                 "inputValue":"9"
  648.                                              },
  649.                                              {
  650.                                                 "xtype":"checkbox",
  651.                                                 "boxLabel":"Testbox 10",
  652.                                                 "name":"testbox10",
  653.                                                 "inputValue":"10"
  654.                                              },
  655.                                              {
  656.                                                 "xtype":"checkbox",
  657.                                                 "boxLabel":"Testbox 11",
  658.                                                 "name":"testbox11",
  659.                                                 "inputValue":"11"
  660.                                              },
  661.                                              {
  662.                                                 "xtype":"checkbox",
  663.                                                 "boxLabel":"Testbox 12",
  664.                                                 "name":"testbox12",
  665.                                                 "inputValue":"12"
  666.                                              },
  667.                                              {
  668.                                                 "xtype":"checkbox",
  669.                                                 "boxLabel":"Testbox 13",
  670.                                                 "name":"testbox13",
  671.                                                 "inputValue":"13"
  672.                                              }
  673.                                           ],
  674.                                           "width":150
  675.                                        },
  676.                                        {
  677.                                           "xtype":"panel",
  678.                                           "collapsible"  : true,
  679.                                           "titleCollapse": true,
  680.                                           "collapsed"    : true,
  681.                                           "hideBorders":true,
  682.                                           "items":[
  683.                                              {
  684.                                                 "xtype":"checkbox",
  685.                                                 "boxLabel":"Testbox 1",
  686.                                                 "name":"testbox1",
  687.                                                 "inputValue":"1"
  688.                                              },
  689.                                              {
  690.                                                 "xtype":"checkbox",
  691.                                                 "boxLabel":"Testbox 3",
  692.                                                 "name":"testbox3",
  693.                                                 "inputValue":"3"
  694.                                              },
  695.                                              {
  696.                                                 "xtype":"checkbox",
  697.                                                 "boxLabel":"Testbox 4",
  698.                                                 "name":"testbox4",
  699.                                                 "inputValue":"4"
  700.                                              },
  701.                                              {
  702.                                                 "xtype":"checkbox",
  703.                                                 "boxLabel":"Testbox 5",
  704.                                                 "name":"testbox5",
  705.                                                 "inputValue":"5"
  706.                                              },
  707.                                              {
  708.                                                 "xtype":"checkbox",
  709.                                                 "boxLabel":"Testbox 10",
  710.                                                 "name":"testbox10",
  711.                                                 "inputValue":"10"
  712.                                              }
  713.                                           ],
  714.                                           "width":150
  715.                                        },
  716.                                        {
  717.                                           "xtype":"panel",
  718.                                           "collapsible"  : true,
  719.                                           "titleCollapse": true,
  720.                                           "collapsed"    : true,
  721.                                           "hideBorders":true,
  722.                                           "items":[
  723.                                              {
  724.                                                 "xtype":"checkbox",
  725.                                                 "boxLabel":"Testbox 1",
  726.                                                 "name":"testbox1",
  727.                                                 "inputValue":"1"
  728.                                              },
  729.                                              {
  730.                                                 "xtype":"checkbox",
  731.                                                 "boxLabel":"Testbox 111",
  732.                                                 "name":"testbox111",
  733.                                                 "inputValue":"111"
  734.                                              },
  735.                                              {
  736.                                                 "xtype":"checkbox",
  737.                                                 "boxLabel":"Testbox 112",
  738.                                                 "name":"testbox112",
  739.                                                 "inputValue":"112"
  740.                                              },
  741.                                              {
  742.                                                 "xtype":"checkbox",
  743.                                                 "boxLabel":"Testbox 129",
  744.                                                 "name":"testbox129",
  745.                                                 "inputValue":"129"
  746.                                              },
  747.                                              {
  748.                                                 "xtype":"checkbox",
  749.                                                 "boxLabel":"Testbox 130",
  750.                                                 "name":"testbox130",
  751.                                                 "inputValue":"130"
  752.                                              },
  753.                                              {
  754.                                                 "xtype":"checkbox",
  755.                                                 "boxLabel":"Testbox 131",
  756.                                                 "name":"testbox131",
  757.                                                 "inputValue":"131"
  758.                                              },
  759.                                              {
  760.                                                 "xtype":"checkbox",
  761.                                                 "boxLabel":"Testbox 132",
  762.                                                 "name":"testbox132",
  763.                                                 "inputValue":"132"
  764.                                              },
  765.                                              {
  766.                                                 "xtype":"checkbox",
  767.                                                 "boxLabel":"Testbox 24",
  768.                                                 "name":"testbox24",
  769.                                                 "inputValue":"24"
  770.                                              },
  771.                                              {
  772.                                                 "xtype":"checkbox",
  773.                                                 "boxLabel":"Testbox 5",
  774.                                                 "name":"testbox5",
  775.                                                 "inputValue":"5"
  776.                                              },
  777.                                              {
  778.                                                 "xtype":"checkbox",
  779.                                                 "boxLabel":"Testbox 51",
  780.                                                 "name":"testbox51",
  781.                                                 "inputValue":"51"
  782.                                              },
  783.                                              {
  784.                                                 "xtype":"checkbox",
  785.                                                 "boxLabel":"Testbox 6",
  786.                                                 "name":"testbox6",
  787.                                                 "inputValue":"6"
  788.                                              },
  789.                                              {
  790.                                                 "xtype":"checkbox",
  791.                                                 "boxLabel":"Testbox 67",
  792.                                                 "name":"testbox67",
  793.                                                 "inputValue":"67"
  794.                                              },
  795.                                              {
  796.                                                 "xtype":"checkbox",
  797.                                                 "boxLabel":"Testbox 7",
  798.                                                 "name":"testbox7",
  799.                                                 "inputValue":"7"
  800.                                              },
  801.                                              {
  802.                                                 "xtype":"checkbox",
  803.                                                 "boxLabel":"Testbox 9",
  804.                                                 "name":"testbox9",
  805.                                                 "inputValue":"9"
  806.                                              },
  807.                                              {
  808.                                                 "xtype":"checkbox",
  809.                                                 "boxLabel":"Testbox _usergroup_2",
  810.                                                 "name":"testbox_usergroup_2",
  811.                                                 "inputValue":"_usergroup_2"
  812.                                              },
  813.                                              {
  814.                                                 "xtype":"checkbox",
  815.                                                 "boxLabel":"Testbox _usergroup_36",
  816.                                                 "name":"testbox_usergroup_36",
  817.                                                 "inputValue":"_usergroup_36"
  818.                                              }
  819.                                           ],
  820.                                           "width":150
  821.                                        },
  822.                                        {
  823.                                           "xtype":"panel",
  824.                                           "collapsible"  : true,
  825.                                           "titleCollapse": true,
  826.                                           "collapsed"    : true,
  827.                                           "hideBorders":true,
  828.                                           "items":[
  829.                                              {
  830.                                                 "xtype":"checkbox",
  831.                                                 "boxLabel":"Testbox -1",
  832.                                                 "name":"testbox-1",
  833.                                                 "inputValue":"-1"
  834.                                              },
  835.                                              {
  836.                                                 "xtype":"checkbox",
  837.                                                 "boxLabel":"Testbox 2010-02-24",
  838.                                                 "name":"testbox2010-02-24",
  839.                                                 "inputValue":"2010-02-24"
  840.                                              },
  841.                                              {
  842.                                                 "xtype":"checkbox",
  843.                                                 "boxLabel":"Testbox 2010-02-26",
  844.                                                 "name":"testbox2010-02-26",
  845.                                                 "inputValue":"2010-02-26"
  846.                                              },
  847.                                              {
  848.                                                 "xtype":"checkbox",
  849.                                                 "boxLabel":"Testbox 2010-03-01",
  850.                                                 "name":"testbox2010-03-01",
  851.                                                 "inputValue":"2010-03-01"
  852.                                              },
  853.                                              {
  854.                                                 "xtype":"checkbox",
  855.                                                 "boxLabel":"Testbox 2010-10-12",
  856.                                                 "name":"testbox2010-10-12",
  857.                                                 "inputValue":"2010-10-12"
  858.                                              },
  859.                                              {
  860.                                                 "xtype":"checkbox",
  861.                                                 "boxLabel":"Testbox 2010-10-13",
  862.                                                 "name":"testbox2010-10-13",
  863.                                                 "inputValue":"2010-10-13"
  864.                                              },
  865.                                              {
  866.                                                 "xtype":"checkbox",
  867.                                                 "boxLabel":"Testbox 2010-10-14",
  868.                                                 "name":"testbox2010-10-14",
  869.                                                 "inputValue":"2010-10-14"
  870.                                              },
  871.                                              {
  872.                                                 "xtype":"checkbox",
  873.                                                 "boxLabel":"Testbox 2010-10-15",
  874.                                                 "name":"testbox2010-10-15",
  875.                                                 "inputValue":"2010-10-15"
  876.                                              },
  877.                                              {
  878.                                                 "xtype":"checkbox",
  879.                                                 "boxLabel":"Testbox 2010-10-16",
  880.                                                 "name":"testbox2010-10-16",
  881.                                                 "inputValue":"2010-10-16"
  882.                                              },
  883.                                              {
  884.                                                 "xtype":"checkbox",
  885.                                                 "boxLabel":"Testbox 2010-10-17",
  886.                                                 "name":"testbox2010-10-17",
  887.                                                 "inputValue":"2010-10-17"
  888.                                              },
  889.                                              {
  890.                                                 "xtype":"checkbox",
  891.                                                 "boxLabel":"Testbox 2010-10-18",
  892.                                                 "name":"testbox2010-10-18",
  893.                                                 "inputValue":"2010-10-18"
  894.                                              },
  895.                                              {
  896.                                                 "xtype":"checkbox",
  897.                                                 "boxLabel":"Testbox 2010-10-19",
  898.                                                 "name":"testbox2010-10-19",
  899.                                                 "inputValue":"2010-10-19"
  900.                                              },
  901.                                              {
  902.                                                 "xtype":"checkbox",
  903.                                                 "boxLabel":"Testbox 2010-10-20",
  904.                                                 "name":"testbox2010-10-20",
  905.                                                 "inputValue":"2010-10-20"
  906.                                              },
  907.                                              {
  908.                                                 "xtype":"checkbox",
  909.                                                 "boxLabel":"Testbox 2011-04-20",
  910.                                                 "name":"testbox2011-04-20",
  911.                                                 "inputValue":"2011-04-20"
  912.                                              },
  913.                                              {
  914.                                                 "xtype":"checkbox",
  915.                                                 "boxLabel":"Testbox 2011-04-28",
  916.                                                 "name":"testbox2011-04-28",
  917.                                                 "inputValue":"2011-04-28"
  918.                                              }
  919.                                           ],
  920.                                           "width":150
  921.                                        },
  922.                                        {
  923.                                           "xtype":"panel",
  924.                                           "collapsible"  : true,
  925.                                           "titleCollapse": true,
  926.                                           "collapsed"    : true,
  927.                                           "hideBorders":true,
  928.                                           "items":[
  929.                                              {
  930.                                                 "xtype":"checkbox",
  931.                                                 "boxLabel":"Testbox -1",
  932.                                                 "name":"testbox-1",
  933.                                                 "inputValue":"-1"
  934.                                              },
  935.                                              {
  936.                                                 "xtype":"checkbox",
  937.                                                 "boxLabel":"Testbox 2010-02-24",
  938.                                                 "name":"testbox2010-02-24",
  939.                                                 "inputValue":"2010-02-24"
  940.                                              },
  941.                                              {
  942.                                                 "xtype":"checkbox",
  943.                                                 "boxLabel":"Testbox 2010-02-26",
  944.                                                 "name":"testbox2010-02-26",
  945.                                                 "inputValue":"2010-02-26"
  946.                                              },
  947.                                              {
  948.                                                 "xtype":"checkbox",
  949.                                                 "boxLabel":"Testbox 2010-03-01",
  950.                                                 "name":"testbox2010-03-01",
  951.                                                 "inputValue":"2010-03-01"
  952.                                              },
  953.                                              {
  954.                                                 "xtype":"checkbox",
  955.                                                 "boxLabel":"Testbox 2010-10-12",
  956.                                                 "name":"testbox2010-10-12",
  957.                                                 "inputValue":"2010-10-12"
  958.                                              },
  959.                                              {
  960.                                                 "xtype":"checkbox",
  961.                                                 "boxLabel":"Testbox 2010-10-13",
  962.                                                 "name":"testbox2010-10-13",
  963.                                                 "inputValue":"2010-10-13"
  964.                                              },
  965.                                              {
  966.                                                 "xtype":"checkbox",
  967.                                                 "boxLabel":"Testbox 2010-10-14",
  968.                                                 "name":"testbox2010-10-14",
  969.                                                 "inputValue":"2010-10-14"
  970.                                              },
  971.                                              {
  972.                                                 "xtype":"checkbox",
  973.                                                 "boxLabel":"Testbox 2010-10-15",
  974.                                                 "name":"testbox2010-10-15",
  975.                                                 "inputValue":"2010-10-15"
  976.                                              },
  977.                                              {
  978.                                                 "xtype":"checkbox",
  979.                                                 "boxLabel":"Testbox 2010-10-16",
  980.                                                 "name":"testbox2010-10-16",
  981.                                                 "inputValue":"2010-10-16"
  982.                                              },
  983.                                              {
  984.                                                 "xtype":"checkbox",
  985.                                                 "boxLabel":"Testbox 2010-10-17",
  986.                                                 "name":"testbox2010-10-17",
  987.                                                 "inputValue":"2010-10-17"
  988.                                              },
  989.                                              {
  990.                                                 "xtype":"checkbox",
  991.                                                 "boxLabel":"Testbox 2010-10-18",
  992.                                                 "name":"testbox2010-10-18",
  993.                                                 "inputValue":"2010-10-18"
  994.                                              },
  995.                                              {
  996.                                                 "xtype":"checkbox",
  997.                                                 "boxLabel":"Testbox 2010-10-19",
  998.                                                 "name":"testbox2010-10-19",
  999.                                                 "inputValue":"2010-10-19"
  1000.                                              },
  1001.                                              {
  1002.                                                 "xtype":"checkbox",
  1003.                                                 "boxLabel":"Testbox 2010-10-20",
  1004.                                                 "name":"testbox2010-10-20",
  1005.                                                 "inputValue":"2010-10-20"
  1006.                                              },
  1007.                                              {
  1008.                                                 "xtype":"checkbox",
  1009.                                                 "boxLabel":"Testbox 2011-04-20",
  1010.                                                 "name":"testbox2011-04-20",
  1011.                                                 "inputValue":"2011-04-20"
  1012.                                              },
  1013.                                              {
  1014.                                                 "xtype":"checkbox",
  1015.                                                 "boxLabel":"Testbox 2011-04-28",
  1016.                                                 "name":"testbox2011-04-28",
  1017.                                                 "inputValue":"2011-04-28"
  1018.                                              }
  1019.                                           ],
  1020.                                           "width":150
  1021.                                        },
  1022.                                        {
  1023.                                           "xtype":"panel",
  1024.                                           "collapsible"  : true,
  1025.                                           "titleCollapse": true,
  1026.                                           "collapsed"    : true,
  1027.                                           "hideBorders":true,
  1028.                                           "items":[
  1029.                                              {
  1030.                                                 "xtype":"checkbox",
  1031.                                                 "boxLabel":"Testbox -1",
  1032.                                                 "name":"testbox-1",
  1033.                                                 "inputValue":"-1"
  1034.                                              },
  1035.                                              {
  1036.                                                 "xtype":"checkbox",
  1037.                                                 "boxLabel":"Testbox 2010-02-22",
  1038.                                                 "name":"testbox2010-02-22",
  1039.                                                 "inputValue":"2010-02-22"
  1040.                                              },
  1041.                                              {
  1042.                                                 "xtype":"checkbox",
  1043.                                                 "boxLabel":"Testbox 2010-03-01",
  1044.                                                 "name":"testbox2010-03-01",
  1045.                                                 "inputValue":"2010-03-01"
  1046.                                              },
  1047.                                              {
  1048.                                                 "xtype":"checkbox",
  1049.                                                 "boxLabel":"Testbox 2010-03-22",
  1050.                                                 "name":"testbox2010-03-22",
  1051.                                                 "inputValue":"2010-03-22"
  1052.                                              },
  1053.                                              {
  1054.                                                 "xtype":"checkbox",
  1055.                                                 "boxLabel":"Testbox 2010-03-29",
  1056.                                                 "name":"testbox2010-03-29",
  1057.                                                 "inputValue":"2010-03-29"
  1058.                                              },
  1059.                                              {
  1060.                                                 "xtype":"checkbox",
  1061.                                                 "boxLabel":"Testbox 2010-04-05",
  1062.                                                 "name":"testbox2010-04-05",
  1063.                                                 "inputValue":"2010-04-05"
  1064.                                              },
  1065.                                              {
  1066.                                                 "xtype":"checkbox",
  1067.                                                 "boxLabel":"Testbox 2010-04-12",
  1068.                                                 "name":"testbox2010-04-12",
  1069.                                                 "inputValue":"2010-04-12"
  1070.                                              },
  1071.                                              {
  1072.                                                 "xtype":"checkbox",
  1073.                                                 "boxLabel":"Testbox 2010-04-19",
  1074.                                                 "name":"testbox2010-04-19",
  1075.                                                 "inputValue":"2010-04-19"
  1076.                                              },
  1077.                                              {
  1078.                                                 "xtype":"checkbox",
  1079.                                                 "boxLabel":"Testbox 2010-04-26",
  1080.                                                 "name":"testbox2010-04-26",
  1081.                                                 "inputValue":"2010-04-26"
  1082.                                              },
  1083.                                              {
  1084.                                                 "xtype":"checkbox",
  1085.                                                 "boxLabel":"Testbox 2010-05-03",
  1086.                                                 "name":"testbox2010-05-03",
  1087.                                                 "inputValue":"2010-05-03"
  1088.                                              },
  1089.                                              {
  1090.                                                 "xtype":"checkbox",
  1091.                                                 "boxLabel":"Testbox 2010-05-10",
  1092.                                                 "name":"testbox2010-05-10",
  1093.                                                 "inputValue":"2010-05-10"
  1094.                                              },
  1095.                                              {
  1096.                                                 "xtype":"checkbox",
  1097.                                                 "boxLabel":"Testbox 2010-05-17",
  1098.                                                 "name":"testbox2010-05-17",
  1099.                                                 "inputValue":"2010-05-17"
  1100.                                              },
  1101.                                              {
  1102.                                                 "xtype":"checkbox",
  1103.                                                 "boxLabel":"Testbox 2010-05-24",
  1104.                                                 "name":"testbox2010-05-24",
  1105.                                                 "inputValue":"2010-05-24"
  1106.                                              },
  1107.                                              {
  1108.                                                 "xtype":"checkbox",
  1109.                                                 "boxLabel":"Testbox 2010-05-31",
  1110.                                                 "name":"testbox2010-05-31",
  1111.                                                 "inputValue":"2010-05-31"
  1112.                                              },
  1113.                                              {
  1114.                                                 "xtype":"checkbox",
  1115.                                                 "boxLabel":"Testbox 2010-06-07",
  1116.                                                 "name":"testbox2010-06-07",
  1117.                                                 "inputValue":"2010-06-07"
  1118.                                              },
  1119.                                              {
  1120.                                                 "xtype":"checkbox",
  1121.                                                 "boxLabel":"Testbox 2010-06-14",
  1122.                                                 "name":"testbox2010-06-14",
  1123.                                                 "inputValue":"2010-06-14"
  1124.                                              },
  1125.                                              {
  1126.                                                 "xtype":"checkbox",
  1127.                                                 "boxLabel":"Testbox 2010-06-21",
  1128.                                                 "name":"testbox2010-06-21",
  1129.                                                 "inputValue":"2010-06-21"
  1130.                                              },
  1131.                                              {
  1132.                                                 "xtype":"checkbox",
  1133.                                                 "boxLabel":"Testbox 2010-06-28",
  1134.                                                 "name":"testbox2010-06-28",
  1135.                                                 "inputValue":"2010-06-28"
  1136.                                              },
  1137.                                              {
  1138.                                                 "xtype":"checkbox",
  1139.                                                 "boxLabel":"Testbox 2010-07-05",
  1140.                                                 "name":"testbox2010-07-05",
  1141.                                                 "inputValue":"2010-07-05"
  1142.                                              },
  1143.                                              {
  1144.                                                 "xtype":"checkbox",
  1145.                                                 "boxLabel":"Testbox 2010-07-12",
  1146.                                                 "name":"testbox2010-07-12",
  1147.                                                 "inputValue":"2010-07-12"
  1148.                                              },
  1149.                                              {
  1150.                                                 "xtype":"checkbox",
  1151.                                                 "boxLabel":"Testbox 2010-07-19",
  1152.                                                 "name":"testbox2010-07-19",
  1153.                                                 "inputValue":"2010-07-19"
  1154.                                              },
  1155.                                              {
  1156.                                                 "xtype":"checkbox",
  1157.                                                 "boxLabel":"Testbox 2010-07-26",
  1158.                                                 "name":"testbox2010-07-26",
  1159.                                                 "inputValue":"2010-07-26"
  1160.                                              },
  1161.                                              {
  1162.                                                 "xtype":"checkbox",
  1163.                                                 "boxLabel":"Testbox 2010-08-02",
  1164.                                                 "name":"testbox2010-08-02",
  1165.                                                 "inputValue":"2010-08-02"
  1166.                                              },
  1167.                                              {
  1168.                                                 "xtype":"checkbox",
  1169.                                                 "boxLabel":"Testbox 2010-08-09",
  1170.                                                 "name":"testbox2010-08-09",
  1171.                                                 "inputValue":"2010-08-09"
  1172.                                              },
  1173.                                              {
  1174.                                                 "xtype":"checkbox",
  1175.                                                 "boxLabel":"Testbox 2010-08-16",
  1176.                                                 "name":"testbox2010-08-16",
  1177.                                                 "inputValue":"2010-08-16"
  1178.                                              },
  1179.                                              {
  1180.                                                 "xtype":"checkbox",
  1181.                                                 "boxLabel":"Testbox 2010-08-23",
  1182.                                                 "name":"testbox2010-08-23",
  1183.                                                 "inputValue":"2010-08-23"
  1184.                                              },
  1185.                                              {
  1186.                                                 "xtype":"checkbox",
  1187.                                                 "boxLabel":"Testbox 2010-08-30",
  1188.                                                 "name":"testbox2010-08-30",
  1189.                                                 "inputValue":"2010-08-30"
  1190.                                              },
  1191.                                              {
  1192.                                                 "xtype":"checkbox",
  1193.                                                 "boxLabel":"Testbox 2010-09-06",
  1194.                                                 "name":"testbox2010-09-06",
  1195.                                                 "inputValue":"2010-09-06"
  1196.                                              },
  1197.                                              {
  1198.                                                 "xtype":"checkbox",
  1199.                                                 "boxLabel":"Testbox 2010-09-13",
  1200.                                                 "name":"testbox2010-09-13",
  1201.                                                 "inputValue":"2010-09-13"
  1202.                                              },
  1203.                                              {
  1204.                                                 "xtype":"checkbox",
  1205.                                                 "boxLabel":"Testbox 2010-09-20",
  1206.                                                 "name":"testbox2010-09-20",
  1207.                                                 "inputValue":"2010-09-20"
  1208.                                              },
  1209.                                              {
  1210.                                                 "xtype":"checkbox",
  1211.                                                 "boxLabel":"Testbox 2010-09-27",
  1212.                                                 "name":"testbox2010-09-27",
  1213.                                                 "inputValue":"2010-09-27"
  1214.                                              },
  1215.                                              {
  1216.                                                 "xtype":"checkbox",
  1217.                                                 "boxLabel":"Testbox 2010-10-04",
  1218.                                                 "name":"testbox2010-10-04",
  1219.                                                 "inputValue":"2010-10-04"
  1220.                                              },
  1221.                                              {
  1222.                                                 "xtype":"checkbox",
  1223.                                                 "boxLabel":"Testbox 2010-10-11",
  1224.                                                 "name":"testbox2010-10-11",
  1225.                                                 "inputValue":"2010-10-11"
  1226.                                              },
  1227.                                              {
  1228.                                                 "xtype":"checkbox",
  1229.                                                 "boxLabel":"Testbox 2010-10-18",
  1230.                                                 "name":"testbox2010-10-18",
  1231.                                                 "inputValue":"2010-10-18"
  1232.                                              },
  1233.                                              {
  1234.                                                 "xtype":"checkbox",
  1235.                                                 "boxLabel":"Testbox 2011-04-18",
  1236.                                                 "name":"testbox2011-04-18",
  1237.                                                 "inputValue":"2011-04-18"
  1238.                                              },
  1239.                                              {
  1240.                                                 "xtype":"checkbox",
  1241.                                                 "boxLabel":"Testbox 2011-04-25",
  1242.                                                 "name":"testbox2011-04-25",
  1243.                                                 "inputValue":"2011-04-25"
  1244.                                              }
  1245.                                           ],
  1246.                                           "width":150
  1247.                                        },
  1248.                                        {
  1249.                                           "xtype":"panel",
  1250.                                           "collapsible"  : true,
  1251.                                           "titleCollapse": true,
  1252.                                           "collapsed"    : true,
  1253.                                           "hideBorders":true,
  1254.                                           "items":[
  1255.                                              {
  1256.                                                 "xtype":"checkbox",
  1257.                                                 "boxLabel":"Testbox -1",
  1258.                                                 "name":"testbox-1",
  1259.                                                 "inputValue":"-1"
  1260.                                              },
  1261.                                              {
  1262.                                                 "xtype":"checkbox",
  1263.                                                 "boxLabel":"Testbox 2010-02-28",
  1264.                                                 "name":"testbox2010-02-28",
  1265.                                                 "inputValue":"2010-02-28"
  1266.                                              },
  1267.                                              {
  1268.                                                 "xtype":"checkbox",
  1269.                                                 "boxLabel":"Testbox 2010-03-07",
  1270.                                                 "name":"testbox2010-03-07",
  1271.                                                 "inputValue":"2010-03-07"
  1272.                                              },
  1273.                                              {
  1274.                                                 "xtype":"checkbox",
  1275.                                                 "boxLabel":"Testbox 2010-03-28",
  1276.                                                 "name":"testbox2010-03-28",
  1277.                                                 "inputValue":"2010-03-28"
  1278.                                              },
  1279.                                              {
  1280.                                                 "xtype":"checkbox",
  1281.                                                 "boxLabel":"Testbox 2010-04-04",
  1282.                                                 "name":"testbox2010-04-04",
  1283.                                                 "inputValue":"2010-04-04"
  1284.                                              },
  1285.                                              {
  1286.                                                 "xtype":"checkbox",
  1287.                                                 "boxLabel":"Testbox 2010-04-11",
  1288.                                                 "name":"testbox2010-04-11",
  1289.                                                 "inputValue":"2010-04-11"
  1290.                                              },
  1291.                                              {
  1292.                                                 "xtype":"checkbox",
  1293.                                                 "boxLabel":"Testbox 2010-04-18",
  1294.                                                 "name":"testbox2010-04-18",
  1295.                                                 "inputValue":"2010-04-18"
  1296.                                              },
  1297.                                              {
  1298.                                                 "xtype":"checkbox",
  1299.                                                 "boxLabel":"Testbox 2010-04-25",
  1300.                                                 "name":"testbox2010-04-25",
  1301.                                                 "inputValue":"2010-04-25"
  1302.                                              },
  1303.                                              {
  1304.                                                 "xtype":"checkbox",
  1305.                                                 "boxLabel":"Testbox 2010-05-02",
  1306.                                                 "name":"testbox2010-05-02",
  1307.                                                 "inputValue":"2010-05-02"
  1308.                                              },
  1309.                                              {
  1310.                                                 "xtype":"checkbox",
  1311.                                                 "boxLabel":"Testbox 2010-05-09",
  1312.                                                 "name":"testbox2010-05-09",
  1313.                                                 "inputValue":"2010-05-09"
  1314.                                              },
  1315.                                              {
  1316.                                                 "xtype":"checkbox",
  1317.                                                 "boxLabel":"Testbox 2010-05-16",
  1318.                                                 "name":"testbox2010-05-16",
  1319.                                                 "inputValue":"2010-05-16"
  1320.                                              },
  1321.                                              {
  1322.                                                 "xtype":"checkbox",
  1323.                                                 "boxLabel":"Testbox 2010-05-23",
  1324.                                                 "name":"testbox2010-05-23",
  1325.                                                 "inputValue":"2010-05-23"
  1326.                                              },
  1327.                                              {
  1328.                                                 "xtype":"checkbox",
  1329.                                                 "boxLabel":"Testbox 2010-05-30",
  1330.                                                 "name":"testbox2010-05-30",
  1331.                                                 "inputValue":"2010-05-30"
  1332.                                              },
  1333.                                              {
  1334.                                                 "xtype":"checkbox",
  1335.                                                 "boxLabel":"Testbox 2010-06-06",
  1336.                                                 "name":"testbox2010-06-06",
  1337.                                                 "inputValue":"2010-06-06"
  1338.                                              },
  1339.                                              {
  1340.                                                 "xtype":"checkbox",
  1341.                                                 "boxLabel":"Testbox 2010-06-13",
  1342.                                                 "name":"testbox2010-06-13",
  1343.                                                 "inputValue":"2010-06-13"
  1344.                                              },
  1345.                                              {
  1346.                                                 "xtype":"checkbox",
  1347.                                                 "boxLabel":"Testbox 2010-06-20",
  1348.                                                 "name":"testbox2010-06-20",
  1349.                                                 "inputValue":"2010-06-20"
  1350.                                              },
  1351.                                              {
  1352.                                                 "xtype":"checkbox",
  1353.                                                 "boxLabel":"Testbox 2010-06-27",
  1354.                                                 "name":"testbox2010-06-27",
  1355.                                                 "inputValue":"2010-06-27"
  1356.                                              },
  1357.                                              {
  1358.                                                 "xtype":"checkbox",
  1359.                                                 "boxLabel":"Testbox 2010-07-04",
  1360.                                                 "name":"testbox2010-07-04",
  1361.                                                 "inputValue":"2010-07-04"
  1362.                                              },
  1363.                                              {
  1364.                                                 "xtype":"checkbox",
  1365.                                                 "boxLabel":"Testbox 2010-07-11",
  1366.                                                 "name":"testbox2010-07-11",
  1367.                                                 "inputValue":"2010-07-11"
  1368.                                              },
  1369.                                              {
  1370.                                                 "xtype":"checkbox",
  1371.                                                 "boxLabel":"Testbox 2010-07-18",
  1372.                                                 "name":"testbox2010-07-18",
  1373.                                                 "inputValue":"2010-07-18"
  1374.                                              },
  1375.                                              {
  1376.                                                 "xtype":"checkbox",
  1377.                                                 "boxLabel":"Testbox 2010-07-25",
  1378.                                                 "name":"testbox2010-07-25",
  1379.                                                 "inputValue":"2010-07-25"
  1380.                                              },
  1381.                                              {
  1382.                                                 "xtype":"checkbox",
  1383.                                                 "boxLabel":"Testbox 2010-08-01",
  1384.                                                 "name":"testbox2010-08-01",
  1385.                                                 "inputValue":"2010-08-01"
  1386.                                              },
  1387.                                              {
  1388.                                                 "xtype":"checkbox",
  1389.                                                 "boxLabel":"Testbox 2010-08-08",
  1390.                                                 "name":"testbox2010-08-08",
  1391.                                                 "inputValue":"2010-08-08"
  1392.                                              },
  1393.                                              {
  1394.                                                 "xtype":"checkbox",
  1395.                                                 "boxLabel":"Testbox 2010-08-15",
  1396.                                                 "name":"testbox2010-08-15",
  1397.                                                 "inputValue":"2010-08-15"
  1398.                                              },
  1399.                                              {
  1400.                                                 "xtype":"checkbox",
  1401.                                                 "boxLabel":"Testbox 2010-08-22",
  1402.                                                 "name":"testbox2010-08-22",
  1403.                                                 "inputValue":"2010-08-22"
  1404.                                              },
  1405.                                              {
  1406.                                                 "xtype":"checkbox",
  1407.                                                 "boxLabel":"Testbox 2010-08-29",
  1408.                                                 "name":"testbox2010-08-29",
  1409.                                                 "inputValue":"2010-08-29"
  1410.                                              },
  1411.                                              {
  1412.                                                 "xtype":"checkbox",
  1413.                                                 "boxLabel":"Testbox 2010-09-05",
  1414.                                                 "name":"testbox2010-09-05",
  1415.                                                 "inputValue":"2010-09-05"
  1416.                                              },
  1417.                                              {
  1418.                                                 "xtype":"checkbox",
  1419.                                                 "boxLabel":"Testbox 2010-09-12",
  1420.                                                 "name":"testbox2010-09-12",
  1421.                                                 "inputValue":"2010-09-12"
  1422.                                              },
  1423.                                              {
  1424.                                                 "xtype":"checkbox",
  1425.                                                 "boxLabel":"Testbox 2010-09-19",
  1426.                                                 "name":"testbox2010-09-19",
  1427.                                                 "inputValue":"2010-09-19"
  1428.                                              },
  1429.                                              {
  1430.                                                 "xtype":"checkbox",
  1431.                                                 "boxLabel":"Testbox 2010-09-26",
  1432.                                                 "name":"testbox2010-09-26",
  1433.                                                 "inputValue":"2010-09-26"
  1434.                                              },
  1435.                                              {
  1436.                                                 "xtype":"checkbox",
  1437.                                                 "boxLabel":"Testbox 2010-10-03",
  1438.                                                 "name":"testbox2010-10-03",
  1439.                                                 "inputValue":"2010-10-03"
  1440.                                              },
  1441.                                              {
  1442.                                                 "xtype":"checkbox",
  1443.                                                 "boxLabel":"Testbox 2010-10-10",
  1444.                                                 "name":"testbox2010-10-10",
  1445.                                                 "inputValue":"2010-10-10"
  1446.                                              },
  1447.                                              {
  1448.                                                 "xtype":"checkbox",
  1449.                                                 "boxLabel":"Testbox 2010-10-17",
  1450.                                                 "name":"testbox2010-10-17",
  1451.                                                 "inputValue":"2010-10-17"
  1452.                                              },
  1453.                                              {
  1454.                                                 "xtype":"checkbox",
  1455.                                                 "boxLabel":"Testbox 2010-10-24",
  1456.                                                 "name":"testbox2010-10-24",
  1457.                                                 "inputValue":"2010-10-24"
  1458.                                              },
  1459.                                              {
  1460.                                                 "xtype":"checkbox",
  1461.                                                 "boxLabel":"Testbox 2011-04-24",
  1462.                                                 "name":"testbox2011-04-24",
  1463.                                                 "inputValue":"2011-04-24"
  1464.                                              },
  1465.                                              {
  1466.                                                 "xtype":"checkbox",
  1467.                                                 "boxLabel":"Testbox 2011-05-01",
  1468.                                                 "name":"testbox2011-05-01",
  1469.                                                 "inputValue":"2011-05-01"
  1470.                                              }
  1471.                                           ],
  1472.                                           "width":150
  1473.                                        },
  1474.                                        {
  1475.                                           "xtype":"panel",
  1476.                                           "collapsible"  : true,
  1477.                                           "titleCollapse": true,
  1478.                                           "collapsed"    : true,
  1479.                                           "hideBorders":true,
  1480.                                           "items":[
  1481.                                              {
  1482.                                                 "xtype":"checkbox",
  1483.                                                 "boxLabel":"Testbox 3",
  1484.                                                 "name":"testbox3",
  1485.                                                 "inputValue":"3"
  1486.                                              },
  1487.                                              {
  1488.                                                 "xtype":"checkbox",
  1489.                                                 "boxLabel":"Testbox 5",
  1490.                                                 "name":"testbox5",
  1491.                                                 "inputValue":"5"
  1492.                                              },
  1493.                                              {
  1494.                                                 "xtype":"checkbox",
  1495.                                                 "boxLabel":"Testbox 6",
  1496.                                                 "name":"testbox6",
  1497.                                                 "inputValue":"6"
  1498.                                              },
  1499.                                              {
  1500.                                                 "xtype":"checkbox",
  1501.                                                 "boxLabel":"Testbox 7",
  1502.                                                 "name":"testbox7",
  1503.                                                 "inputValue":"7"
  1504.                                              },
  1505.                                              {
  1506.                                                 "xtype":"checkbox",
  1507.                                                 "boxLabel":"Testbox 9",
  1508.                                                 "name":"testbox9",
  1509.                                                 "inputValue":"9"
  1510.                                              },
  1511.                                              {
  1512.                                                 "xtype":"checkbox",
  1513.                                                 "boxLabel":"Testbox 32",
  1514.                                                 "name":"testbox32",
  1515.                                                 "inputValue":"32"
  1516.                                              },
  1517.                                              {
  1518.                                                 "xtype":"checkbox",
  1519.                                                 "boxLabel":"Testbox 49",
  1520.                                                 "name":"testbox49",
  1521.                                                 "inputValue":"49"
  1522.                                              },
  1523.                                              {
  1524.                                                 "xtype":"checkbox",
  1525.                                                 "boxLabel":"Testbox 53",
  1526.                                                 "name":"testbox53",
  1527.                                                 "inputValue":"53"
  1528.                                              },
  1529.                                              {
  1530.                                                 "xtype":"checkbox",
  1531.                                                 "boxLabel":"Testbox 54",
  1532.                                                 "name":"testbox54",
  1533.                                                 "inputValue":"54"
  1534.                                              },
  1535.                                              {
  1536.                                                 "xtype":"checkbox",
  1537.                                                 "boxLabel":"Testbox 62",
  1538.                                                 "name":"testbox62",
  1539.                                                 "inputValue":"62"
  1540.                                              },
  1541.                                              {
  1542.                                                 "xtype":"checkbox",
  1543.                                                 "boxLabel":"Testbox 63",
  1544.                                                 "name":"testbox63",
  1545.                                                 "inputValue":"63"
  1546.                                              },
  1547.                                              {
  1548.                                                 "xtype":"checkbox",
  1549.                                                 "boxLabel":"Testbox 64",
  1550.                                                 "name":"testbox64",
  1551.                                                 "inputValue":"64"
  1552.                                              },
  1553.                                              {
  1554.                                                 "xtype":"checkbox",
  1555.                                                 "boxLabel":"Testbox 98",
  1556.                                                 "name":"testbox98",
  1557.                                                 "inputValue":"98"
  1558.                                              },
  1559.                                              {
  1560.                                                 "xtype":"checkbox",
  1561.                                                 "boxLabel":"Testbox 111",
  1562.                                                 "name":"testbox111",
  1563.                                                 "inputValue":"111"
  1564.                                              },
  1565.                                              {
  1566.                                                 "xtype":"checkbox",
  1567.                                                 "boxLabel":"Testbox 112",
  1568.                                                 "name":"testbox112",
  1569.                                                 "inputValue":"112"
  1570.                                              },
  1571.                                              {
  1572.                                                 "xtype":"checkbox",
  1573.                                                 "boxLabel":"Testbox 116",
  1574.                                                 "name":"testbox116",
  1575.                                                 "inputValue":"116"
  1576.                                              },
  1577.                                              {
  1578.                                                 "xtype":"checkbox",
  1579.                                                 "boxLabel":"Testbox 119",
  1580.                                                 "name":"testbox119",
  1581.                                                 "inputValue":"119"
  1582.                                              },
  1583.                                              {
  1584.                                                 "xtype":"checkbox",
  1585.                                                 "boxLabel":"Testbox 123",
  1586.                                                 "name":"testbox123",
  1587.                                                 "inputValue":"123"
  1588.                                              }
  1589.                                           ],
  1590.                                           "width":150
  1591.                                        },
  1592.                                        {
  1593.                                           "xtype":"panel",
  1594.                                           "collapsible"  : true,
  1595.                                           "titleCollapse": true,
  1596.                                           "collapsed"    : true,
  1597.                                           "hideBorders":true,
  1598.                                           "items":[
  1599.                                              {
  1600.                                                 "xtype":"checkbox",
  1601.                                                 "boxLabel":"Testbox 1",
  1602.                                                 "name":"testbox1",
  1603.                                                 "inputValue":"1"
  1604.                                              },
  1605.                                              {
  1606.                                                 "xtype":"checkbox",
  1607.                                                 "boxLabel":"Testbox 2",
  1608.                                                 "name":"testbox2",
  1609.                                                 "inputValue":"2"
  1610.                                              },
  1611.                                              {
  1612.                                                 "xtype":"checkbox",
  1613.                                                 "boxLabel":"Testbox 3",
  1614.                                                 "name":"testbox3",
  1615.                                                 "inputValue":"3"
  1616.                                              },
  1617.                                              {
  1618.                                                 "xtype":"checkbox",
  1619.                                                 "boxLabel":"Testbox 4",
  1620.                                                 "name":"testbox4",
  1621.                                                 "inputValue":"4"
  1622.                                              },
  1623.                                              {
  1624.                                                 "xtype":"checkbox",
  1625.                                                 "boxLabel":"Testbox 5",
  1626.                                                 "name":"testbox5",
  1627.                                                 "inputValue":"5"
  1628.                                              },
  1629.                                              {
  1630.                                                 "xtype":"checkbox",
  1631.                                                 "boxLabel":"Testbox 13",
  1632.                                                 "name":"testbox13",
  1633.                                                 "inputValue":"13"
  1634.                                              },
  1635.                                              {
  1636.                                                 "xtype":"checkbox",
  1637.                                                 "boxLabel":"Testbox 19",
  1638.                                                 "name":"testbox19",
  1639.                                                 "inputValue":"19"
  1640.                                              },
  1641.                                              {
  1642.                                                 "xtype":"checkbox",
  1643.                                                 "boxLabel":"Testbox 20",
  1644.                                                 "name":"testbox20",
  1645.                                                 "inputValue":"20"
  1646.                                              }
  1647.                                           ],
  1648.                                           "width":150
  1649.                                        }
  1650.                                     ]
  1651.                             }              
  1652.                         ]
  1653.                     }]
  1654.                 }
  1655.             ]
  1656.         }]
  1657.     }
  1658. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement