botonera=function(a){Ext.apply(this,a);this.store=new Ext.data.Store({proxy:new Ext.data.HttpProxy({url:"modulos/aplicacion_perfil/listar.php"}),reader:new Ext.data.JsonReader({root:"resultado",successProperty:"exito",id:"APL_ID"},[{name:"APL_ID",type:"int"},{name:"APL_NOMBRE",type:"string"},{name:"APL_ICONO",type:"string"},{name:"APL_FUNCION",type:"string"}])});this.store.load({params:this.parametros});this.store.on("load",this.crear,this);this.addEvents({"crear":true})};Ext.extend(botonera,Ext.util.Observable,{crear:function(b,c,d){var e=null;if(this.store.getCount()>0){e=new Ext.Toolbar(this.el);this.store.each(function(a){if(e.items.getCount()>0){e.add("-")};e.add({id:"boton-"+a.get("APL_ID"),text:a.get("APL_NOMBRE"),iconCls:a.get("APL_ICONO"),handler:eval("this.ambito."+a.get("APL_FUNCION")),scope:this.ambito,APP_ID:a.get("APL_ID")})},this)};this.fireEvent("crear",e)}});
