bueno parece que ya funciona, despues de googlear lo que va del dia llegue a este codigo
Código Javascript
:
Ver original$("#fecha_inicio").datepicker({
dateFormat: 'yymm',
showOn: "button",
buttonImage: "../images_icon/datebox_arrow.png",
buttonImageOnly: true,
numberOfMonths: 2,
onSelect: function(selectedDate){
var month = selectedDate.substr(4,2);
var year = selectedDate.substr(0,4);
$("#fecha_final").datepicker("option", "minDate", new Date(year, month));
$("#fecha_final").datepicker("setDate", new Date(year, month, 1));
}
});
$("#fecha_final").datepicker({
dateFormat: 'yymm',
showOn: "button",
buttonImage: "../images_icon/datebox_arrow.png",
buttonImageOnly: true,
numberOfMonths: 2,
onSelect: function(selectedDate){
var month = selectedDate.substr(4,2);
var year = selectedDate.substr(0,4);
$("#fecha_inicio").datepicker("option", "maxDate", new Date(year, month));
$("#fecha_inicio").datepicker("setDate", new Date(year, month-1, -1));
}
});
Aunque encontre la solucion mas al "tin-marin" que por conocimiento de causa, aun necesitare hacer muchas mas pruebas para ver como se comporta.
Si hay alguna otra propuesta es bienvenida