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
I need to highlight specific dates in a calendar_helper (some are to be blacked out on our calendar). So I need to do something like this:
<% calendar.day(:day_method => :target_date) do |date, changes| %> <% if ScheduledBlackout.on_date(date).size > 0 %> <%= date.day *options here to differentiate this day* %> <% else %> <%= date.day %> <% end %>
Can you tell me what kind of options the day method supports? Can I tell it which css class to render?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need to highlight specific dates in a calendar_helper (some are to be blacked out on our calendar). So I need to do something like this:
Can you tell me what kind of options the day method supports? Can I tell it which css class to render?
The text was updated successfully, but these errors were encountered: