/ Published in: JavaScript
# layout para un panel con scrollbars
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Ext.apply(this, { // title: 'NOMBRE', // iconCls: 'ICONO', closable: true, autoScroll: true, layout: { type: 'table', columns: 2 }, items: [{ xtype: 'panel', width: 690, height: 597, items: [{ // FILTROS // xtype: 'FILTROS', // autoScroll: true, height: 150 }, { // GRID // xtype: 'GRID', // height: 420 height: 425 }] }, { // PANEL // xtype: 'PANEL', width: 470, height: 597, rowspan: 2, autoScroll: true // TOOLBAR // tbar: [{ // icon: 'resources/images/icons/core/add.png', // text: 'Agregar Oportunidad', // scope: this, // handler: this.onAddClick // }, '->', { // icon: 'resources/images/icons/save.png', // text: 'Guardar cambios', // // id:'vguardarcambios', // disabled: true // // scope: this, // // handler: this.onEditClick // }] }] }); this.callParent(arguments);