fullcalendar - Text displayed on the vertical axis of the calendar -
i want in the left frame of calendar (where hours shown) put letters or titles. instance a1, a2, a3 etc.
in calendarview.js
axisformat: userdefaulttimeformat,
and
var userdefaulttimeformat = jquery('#time_format').val(); if(userdefaulttimeformat == 24){ userdefaulttimeformat = 'h(:mm)'; } else { userdefaulttimeformat = 'h(:mm)tt'; }
i have changed
userdefaulttimeformat = 'h(:mm)';
to
userdefaulttimeformat = 'a1 h(:mm)';
this changes first quarter..
i want same o remaining quarters (9.15) a2, (9.30) a3, (9.45) a4. (only characters no time)
how can that?
Comments
Post a Comment