Hi Paul,
I'll add this change to the jDatePicker with a slight variation. It doesn't feel right to show a dataepicker if showDate is false, so instead of adding a showDate property I added a showTimeOnly property, so the code is like this:
if (showTimeOnly)
{
script.Append("$('#" + ClientID + "').timepicker(");
}
else if (showTime)
{
script.Append("$('#" + ClientID + "').datetimepicker(");
}
else
{
script.Append("$('#" + ClientID + "').datepicker(");
}
This will be in the source code repository later today.
Best,
Joe