Lo que quiero es que dentro de se msg-box y dentro este un panel para poder insertar contenido html de esta forma:
Código:
Ese seria el codigo para levantar el msg-box, pero quiero insertarle un panel dentro para meter contenido html como un formulario en html, de esta forma:<p> <b>Multi-line Prompt</b><br /> A multi-line prompt dialog. <button id="mb3">Show</button> </p> <script> Ext.require([ 'Ext.window.MessageBox', 'Ext.tip.*' ]); Ext.onReady(function(){ Ext.get('mb3').on('click', function(e){ Ext.MessageBox.show({ title: 'Address', msg: 'Please enter your address:', width:600, buttons: Ext.MessageBox.OKCANCEL, multiline: true, fn: showResultText, animateTarget: 'mb3' }); }); }); </script>
Código:
Ext.create('Ext.panel.Panel', { title: 'Entregable', width: 200, html: '<p>World!</p>', renderTo: 'information' }); <div id="information"> <table width="90%" align="center" border="0" cellpadding="1"> <tr> <td width="5%"> </td> <td width="85%"> </td> </tr> <tr> <td> </td> <td class="texto"><a href="./maestros/rutasAccesoModulos/init.action" target="_blank"><b>002 - RUTAS ACCESO MODULO</b></a></td> </tr> <tr> <td> </td> <td class="texto"><a href="./maestros/motivosDevolucion/init.action" target="_blank"><b>003 - MOTIVOS DEVOLUCION </b></a></td> </tr> </div>