I created a project for the implementation of Scheduler with the Connector for ASP.NET;
the problem is in display events; for example the event with the value in database of startdate: 2018-11-01 (november) is render in scheduler with date 2018-01-11 (january)
I tray to setting the scheduler .config .xml_date but the problem persist.
if I set Scheduler.Config.xml_date = “%Y-%d-%m %H:%i:%s” this are the data save in table:
and the ID 99 is not display.
If I set Scheduler.Config.xml_date = “%Y-%m-%d %H:%i:%s” when I insert the event with date 15 november it is display in red and it is not save in table.
This is my connector
Public Overrides Function CreateConnector(ByVal context As HttpContext) As IdhtmlxConnector
Dim con = New dhtmlxSchedulerConnector(
"Events",
"Id",
dhtmlxDatabaseAdapterType.SqlServer2005,
ConfigurationManager.ConnectionStrings("SchedulerConnectionString").ConnectionString,
"start_date", "end_date",
"text as text,room_id"
)
'Add options to enable selects in the lightbox and sections for Units view
Dim optionsConnector = New dhtmlxOptionsConnector("Negozio", "idnegozio",
con.Request.Adapter, "negozio")
con.AddOptionsConnector("negozi", optionsConnector)
Return con
End Function