We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i get the date that was clicked? I am new to the web dev world. Please teach me
The text was updated successfully, but these errors were encountered:
I've made own workaround, not so pretty, but works: modyfy template day.html, add:
in calendar: onAfterViewLoad: function(view) { $('.page-header h3').text(this.getTitle()); $('.btn-group button').removeClass('active'); $('button[data-calendar-view="' + view + '"]').addClass('active'); //------------------------------------------------------------------------------- $('#cal-day-box #cal-day-panel #cal-day-panel-hour .cal-day-hour .row-fluid.cal-day-hour-part').unbind('click'); $('#cal-day-box #cal-day-panel #cal-day-panel-hour .cal-day-hour .row-fluid.cal-day-hour-part').click( function() { //When click on hour in the day view var date = $(this).children('.dzien').html(); var time = $(this).children('.span1').children('b').html(); NewEvent(date, time); }); },
Sorry, something went wrong.
No branches or pull requests
How can i get the date that was clicked? I am new to the web dev world. Please teach me
The text was updated successfully, but these errors were encountered: