Sha256: 190e2e45688074d2142911b52aa43af22bf0de1ba6905b54065eb8b281bbb59d

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function outer_frame(){
      Glb.outer_center = new Ext.Panel({
        id:'outer_center',
        //title:'Outer center',
        region:'center',
        // autoScroll :true
      });
      
      Glb.outer_north = new Ext.Panel({
          xtype:'panel',
          region: 'north',
          id:'outer_north',
          layout:'anchor',
          height:70,
          //autoHeight: true,
          tbar: [	{hidden:true, id:'glb_outer_north_tbar'} ],
          border: true
      });
      
      Glb.outer_south = new Ext.Panel({
          region: 'south',
          //title: 'Information',
          autoLoad:'/help',
          id:'outer_south',
          collapsible: true,
          split: true,
          height: 100,
          minHeight: 100,
          collapsed: true
      });
      
      Glb.outer_west = new Ext.Panel({
          region: 'west',
          //title: 'Controll Panel',
          layout : 'accordion',
          id:'outer_west',
          collapsible: true,
          width:200,
          split: true
      });

}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lpmp-1.0.0 public/js/outerframe.js