Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/06/2011, 20:57
Avatar de livemusic
livemusic
 
Fecha de Ingreso: abril-2011
Ubicación: Lima - Chorrillos
Mensajes: 150
Antigüedad: 13 años
Puntos: 18
Respuesta: Form dialog + datetime picker

Veamos si esto te funciona saludos suerte...

Código:
// HTML 
<label>Fecha <input type="text" class="datepicker" name="txtFecha" id="txtFecha" /></label>

// JS
$('input.datepicker').live('click', function(){
				$(this).datepicker({dateFormat: 'yy-mm-dd', showOn:'focus', changeMonth: true, changeYear: true}).focus();
			})