29/12/2010, 16:24
|
| | Fecha de Ingreso: diciembre-2010
Mensajes: 5
Antigüedad: 13 años, 10 meses Puntos: 0 | |
Respuesta: mostrar imagen desde php utilizo Extjs para una aplicación que estoy haciendo, utilizando el componente rowexpander:
Código:
var tpl = new Ext.Template(
'<table border="0">',
'<tr><td rowspan="3"><img src="../../php/mostrar_foto.php?id={id_interno}&tipo=miniatura" /></td>',
'<td><p><b>Nombres:</b> {nombres}</p></td></tr>',
'<tr><td><p><b>Apellido Paterno:</b> {paterno}</p></td></tr>',
'<tr><td><p><b>Apellido Materno:</b> {materno}</p></td></tr>',
'</table>'
);
var expander = new Ext.ux.grid.RowExpander({
tpl : tpl,
enableCaching:false,
lazyRender:false
});
this.grilla.getColumnModel().config.unshift(expander);
this.grilla.initPlugin(expander);
|