Datagrid CheckBoxList Selected Records Count

Hello! :slight_smile:

I have a DataGrid displaying orders. The first column contains the OrderNumber and has a CheckBoxList(Excel) filter. I am trying to count the number of orders selected when either (a) the Apply button is clicked (b) using the Filter property of the DataGrid itself, and then perform an operation if the count is > 1.

Could you help me please!

You can do that using LoadData event:


Thanks Enchev :+1:

Also you can simply use Grid0.view.Count() within the Filter event on the DataGrid.

Thanks for your help.