> On May 17, 2017, at 6:41 AM, Calven Eggert <[email protected]> wrote:
>
> It looks like I’m going to abandon the AjaxDatePicker because I can’t get it
> to work with the date format my users want for this calendar.
>
> Anyone have experience using WO with JQuery? Any hints on how to get that
> setup would be appreciated.
>
I’m walking out the door but:
In the WOD:
StartDate : WOTextField {
value = event.startDate;
formatter = localDateFormatter;
placeholder = "mm/dd/yyyy";
class = "eventdatepicker";
onblur = "validateDate(this);";
onchange = "$('#Update').click();";
otherTagString = "readonly='true'";
}
And in a js file:
$(document).ready(function() {
console.log("Document ready.")
$(".eventdatepicker").datepicker({
dateFormat: "mm/dd/yy",
changeMonth: true,
changeYear: true,
yearRange: '-0y:+5y',
defaultDate: '0'
});
});
Hope this helps.
Klaus Berkling
www.berkling.us <http://berkling.us/> | Photography <https://kib.smugmug.com/>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to [email protected]