Ver Mensaje Individual
  #7 (permalink)  
Antiguo 13/02/2013, 01:42
trueno_largo
 
Fecha de Ingreso: abril-2007
Mensajes: 114
Antigüedad: 17 años
Puntos: 1
Respuesta: Imprimir datos formularios

Ok, si lo de la ventana modal entonces si que lo hago bien, el problema es el coger los datos del formulario, puesto que lo tengo en extjs(por resumir, pongamos que solo tengo un fieldlabel):
Código:
Ext.onReady(function(){   
    Ext.QuickTips.init();
    var mi_formulario = new Ext.FormPanel( {
        url : 'imprimir.jsp', 
        renderTo : Ext.getBody(),
        frame : true,
        title : 'Formulario1',
        width : 700,
        style:"margin: 10px auto 10px auto;",
        items : [ { 
            xtype : 'textfield',
            fieldLabel : 'Cliente::',
            style: " padding-left:10px !important;", 
            labelStyle:'float:left;',
            labelSeparator: ' ',
            name : 'cliente',
            vtype : 'alpha',
            allowBlank: false
        }