Encontre una funcrion .load() de jquery el cual si debería abrir el fomulario, no conosco bien jquery, pero realizando algunos ejemplo si funciona, pero en este caso:
Código Javascript
:
Ver original$( "#dialog-form" ).dialog({
autoOpen: false,
height: 400,
width: 450,
modal: true,
buttons: {
"Create an account": function() {
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
$( "#create-user" )
.button()
.click(function() {
$( "#dialog-form" ).load('/index/add').dialog("open");
});
y en mi vista tengo
Código HTML:
Ver original<div id="dialog-form" title="Create new user"></div> <button id="create-user" style='background:url("images/new_act.jpg") center no-repeat;' title='Nuevo'> </button>
Se abre el modal pero con un mensaje de error:
Cita: Fatal error: Uncaught exception 'Zend_Controller_Action_Exception' with message 'Action "add" does not exist and was not trapped in __call()' in C:\xampp\php\library\Zend\Controller\Action.php:48 5