link scheduler to sql server

Was wondering if there is any way of pulling data from sql server and displaying them on the says I need. I have looked everywhere for a calendar or scheduler that can do that but for some reason I have yet to find on. This is pretty nice and is working but I just need it to pull data and show it. I am using asp.net with jquery and c#.

Hi,
scheduler can load data in JSON format via AJAX.
So in order to load data from SQL server you need to initialize scheduler on the page, call scheduler.load specifying url to server-side handler and ‘json’ type of the data:

scheduler.load("someUrl", "json");

On the backend you read data from the database and output them in JSON format:
docs.dhtmlx.com/scheduler/data_formats.html
docs.dhtmlx.com/scheduler/api__s … _load.html