sakura07 Posted November 21, 2016 Report Share Posted November 21, 2016 Hola, alguien que sepa como cargar un combobox de un formulario, luego de hacer un click en un gridview, todo esto con el framework extjs? Hasta el momento solo logro cargar los textfield, datafield y textareafield :/ //Parte del codigo, gridheader: 'Nombre del Documento',width: '170',flex:1,dataIndex: 'nombre_doc' },{//dato que quiero rescatar en el comboboxheader: 'Estado',width: '170',flex:1,dataIndex: 'estado_doc'}, //Parte del codigo del formulario "editarDocu" {xtype: 'textfield',name: 'nombre_doc',fieldLabel: 'Nombre'}, //combobox para el estado y que no cargaxtype: 'combobox',name: 'estado_doc',fieldLabel: 'Estado'}, //Parte del controlador 'contatogrid dataview': { itemdblclick: this.editarDocumento //doble click en grid },...//La funcion que solo carga los texfield, datafield y textareafield como dije anteriormente, pero no los combobox del formulario.editarDocumento : function(grid, record) { var edit = Ext.create('ExtMVC.view.documento.editarDocu').show(); edit.down('form').loadRecord(record); }, Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now