Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/03/2011, 12:13
darkporn
 
Fecha de Ingreso: noviembre-2008
Mensajes: 31
Antigüedad: 15 años, 5 meses
Puntos: 1
Respuesta: Form dialog JQUERY

$( "#dialog" )
.dialog( "close" )
.dialog( "open" )
.dialog({
title: "TITULO",
bgiframe: true, // para que funcione en IE
modal: true, //para que permita solo trabajar con el dialog, y lo de atras se bloquea
width: 700, // ancho
autoOpen: true,
open: function() {
// ALGO CUANDO SE ABRE EL DIALOG.
// puedes usar load y llamas otra pagina
},
close: function() {
$( "#dialog" ).dialog( "destroy" );
},
buttons: {
BOTON 1: function() {

// ALGO CUANDO SE APRETE EL BOTON 1.

},
Cerrar: function() {
$( this )
.dialog( "destroy" )
.dialog( "close" );
}

}
});


ojala te funcione...

tambn te falta
<input id="fecha_final" type="text" readonly /><input type="hidden" name="fecha_final" id="fin"
cerrar esa linea