I want to display View more only without count when we have more events on Calendar view mode. How can I overwrite the dhx_month_link class so that text always have 'View more".
Thanks
I want to display View more only without count when we have more events on Calendar view mode. How can I overwrite the dhx_month_link class so that text always have 'View more".
Thanks
Have you tried searching the documentation? I found the template in question here.
//default definition
scheduler.templates.month_events_link = function(date, count){
return "<a>View more("+count+" events)</a>";
};
Just modify the return value to whatever you want it to be.
Thank you!!!