Grid cursor wait on double click on row

Hello,

I would like to change the cursor to the wait cursor after a grid row has double clicked. Is there a way to do this?

Thanks.

You need to execute some JavaScript code similar to this example:

In this case however you should set style.cursor to wait:
document.body.style.cursor = 'wait'

1 Like