I am looking at creating an event and reservation system
I found the SO question JQuery Mobile Calendar ? which shows jquery-mobile-datebox and jQuery-Mobile-Themed-DatePicker
I want to display a calendar where certain dates I get from the server are
- available
- not available
- reserved
when a reserved or available date is touched, I want to show times - there can be more than one time per day. The user can then click on a time to reserve it which would hit off an ajax request.
jQuery UI datepicker for example has
onSelect: function(date, inst) {
From what I can see in the above pickers, what I need is not readily available. Before I start hacking them myself, does anyone have suggestions as to
a) which one would lend itself best to what I want
b) are there perhaps better ones out there that already serve my needs
c) before you vote this down and vote to close because it is "not a real question" add a comment that tells me what I should add to have it accepted.
UPDATE:
Firebug gave me
<div class="ui-datebox-griddate ui-corner-all ui-btn-up-e" data-date="25" data-theme="e">25</div>
where ui-btn-up-e can be changed from a - e.
Now I need to find out if data-theme also needs to be changed
$('.ui-datebox-griddate').click(function () {
alert($(this).attr("class"));
}
Can you tell me the nicest way to toggle through 3 of the classes and save the state each time?
$('.ui-datebox-griddate').toggle(
function () {
$(this).????? // change ui-btn-up-? to ui-btn-up-a
$.get(...)
},
function () {
$(this).????? // change ui-btn-up-a to ui-btn-up-b
$.get(...)
},
function () {
$(this).????? // change ui-btn-up-b to ui-btn-up-c
$.get(...)
}
);
UPDATE: NOTE: When I click, the calendar change the date, reloading the calendar completely Perhaps I need to stop that :(
Bounty comment: I would love to split the bounty between Mark and Tomalak...