BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ejs-treegrid id="tree1" rowSelecting="rowselecting" allowPaging="true" dataSource="@ViewBag.datasource" idMapping="TaskId" parentIdMapping="ParentId" treeColumnIndex="0" >
<e-treegrid-columns>
. . . . . . .
. . . . . . .
</e-treegrid-columns>
</ejs-treegrid>
<script>
function rowselecting(args) {
if (args.target.classList.contains("e-treegridexpand")) {
args.cancel = true; // It helps to not triggering the rowselected event
}
}
</script> |