Hi Jorge,
In TreeGrid, “BeginEdit” client side event will be fired when we double click any cell in TreeGrid. And it will allow you edit that cell with the new content. Please refer the below code example for details.
<ej:TreeGrid ID="Treegrid" runat="server"
//…
BeginEdit="beginedit">
//…
</ej:TreeGrid>
<script type="text/javascript">
function beginedit(args) {
// will be fired when we double click the cell
}
</script>
|
Regards,
Mahalakshmi K.