Category / Section
How to select the row dynamically and make it visible
1 min read
In Gantt, we can select the row dynamically by setting value to the selectedRowIndex property by using setModel method and if the selected row will be in bottom of the Gantt container and we can make that row as visible by using setScrollTop method by passing the row top value as an argument.
CSHTML
<script> function selectRow() { var rowIndex = 6; var ganttObj = $("#GanttContainer").ejGantt("instance"); ganttObj.setModel({ "selectedRowIndex": rowIndex }); //Select record by index ganttObj.setScrollTop((rowIndex * ganttObj.model.rowHeight)); //Method to move vertical scroll bar. } </script>
A simple sample to select the record dynamically and make into visible in Gantt view is available here