Hello,
Thank you for your response.
I can confirm that using the Selecting event works as expected.
I wanted to also prevent the header checkbox from selecting all items, but I can't find a way. I tried the code below and it works only once because IsHeaderCheckboxClicked remains true forever after the first time.
if (args.IsHeaderCheckboxClicked)
{
args.Cancel = true;
return;
}
Thank you,
Alessandro