/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var eudlr_ProcessInfo = '<h3>&nbsp;Bitte wählen Sie in der oberen Liste einen Vorgang</h3>';
var eudlr_ProcessesSubTabPanel = new Ext.TabPanel( {
    // hidden : true,
   // disabled : true,
        
    height : '100%',
    width : '100%',
    activeItem: 1, // index or id
    bodyStyle : 'padding : 0px;', //  border : 1px solid red',
    
    items : [
        {
            xtype : 'panel',
            id : 'VorgangsinfoPanel',
            name : 'VorgangsinfoPanel',
            title: 'Vorgangs-Info',
            items : [
                {
                    xtype : 'label',
                    id : 'ProcessInfoLabel',
                    name : 'ProcessInfoLabel',
                    html : eudlr_ProcessInfo
                }
            ]
        },{
            layout : 'fit',
            title: 'Benötigte Vorgangs-Dokumente'
            ,
            items : [eudlr_Documents]
        },{
            title: 'Bescheide der zuständigen Stellen',
             items : [eudlr_Bescheide]
        }
    ]
 })

