deselected row data

we made a row in griddata component deselected how can we have the row record


1 Reply

RS Rajapandiyan Settu Syncfusion Team August 11, 2022 01:59 PM UTC

Hi Neda,


Thanks for contacting Syncfusion support.


Query: we made a row in griddata component deselected how can we have the row record


You can achieve your requirement by using rowDeselected event of Grid. In that event, you can get the deselected row details from the event argument.


rowDeselected: https://ej2.syncfusion.com/javascript/documentation/api/grid/#rowdeselected



<script>

    function rowDeselected(args){

        console.log(args);

        console.log(args.data);

    }

</script>


Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/core_grid_rowdeselected-835564793.zip


Please get back to us if you need further assistance.


Best Regards,
Rajapandiyan S
If this post is helpful, please consider Accepting it as the solution so that other members can locate it more quickly.


Loader.
Up arrow icon