Hi Mark,
Thanks for contacting Syncfusion support.
We don’t have any API to prevent the splitterbar resize action but we can be achieved by work around. The Splitterbar resize action is performed only if it has “e-resize” class. Hence, we can remove it once after the control rendered by using “create” client side event.
Please refer following code snippet,
<ej-gantt id="ganttSample" datasource="ViewBag.datasource"
create="create"
>
<script type="text/javascript">
function create() {
$("span.e-splitbar").removeClass("e-split-divider e-resize"); //removed resize and hover classes
}
</script> |
Please let us know if you need any other assistance.
Regards,
Jayakumar D