I am using DHTMLX nuget package and I'm trying to disable or hide the value on event_bar_date through my aspx.cs
sched.Templates.event_header = @"<span class='event_date'
{start_date:date(%g:%s %A)}</span><br></div>";
sched.Templates.event_bar_header = ???????
I found something like this but this but using JS file which Im not familiar with, I want it to be directly on my cs file
scheduler.templates.event_bar_date = function(start,end,ev){
return "• <b class ='disp_none'>"+scheduler.templates.event_date(start)+"</b> ";
};