Hi,
I begin to look Gantt Control. I took an example on https://help.syncfusion.com/aspnet/gantt/getting-started.
It works fine !!
But when i insert a script manager in <form>, the gantt control disappear of my web page.
Do you have an idea ? Thanks in advance for your reply :)
My basic code :
<form runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<ej:Gantt ID="Gantt_project" runat="server"
AllowSelection="true"
AllowColumnResize="true"
TaskIdMapping="TaskID"
TaskNameMapping="TaskName"
ScheduleStartDate="02/01/2014"
ScheduleEndDate="03/14/2014"
StartDateMapping="StartDate"
DurationMapping="Duration"
ProgressMapping="Progress"
ChildMapping="SubTasks"
TreeColumnIndex="1"
HighlightWeekends="false">
</ej:Gantt>
</form>
Best regards,
Julian ALVAREZ.