Having trouble getting help?
Contact Support
Contact Support
Set the vertical scroll position
8 Nov 20221 minute to read
In the Gantt control, you can set the vertical scroller position dynamically by clicking the custom button using the setScrollTop
method.
@Html.EJS().Button("setScrollTop").Content("Change Scroll Position").CssClass("e-primary").Render()
@Html.EJS().Gantt("Gantt").DataSource((IEnumerable<object>)ViewBag.DataSource).Height("450px").TaskFields(ts =>
ts.Id("TaskId").Name("TaskName").StartDate("StartDate").EndDate("EndDate").Duration("Duration").Progress("Progress").Child("SubTasks")
).Render()
<script>
document.getElementById('setScrollTop').addEventListener('click', function (args) {
var ganttObj = document.getElementById('Gantt').ej2_instances[0];
ganttObj.ganttChartModule.scrollObject.setScrollTop(300);
});
</script>
public IActionResult Index()
{
ViewBag.DataSource = GanttData.ProjectNewData();
return View();
}