Check box in template grid or list view

0
Hi, I have used the data grid to get the list of objects. I have to add the check box for multiple deletion. Is it possible to do in data grid? I heard that it can be done in list view or template grid. Can anyone tell how to add check box for multi selection in Data grid.  
asked
2 answers
2

Sure. Have a look at https://service.mendixcloud.com/p/demodatagridextra. To implement this

  1. Download the module ‘Atlas3Extras’ from the marketplace into your application.
  2. Add either class ‘selectionradiobutton’ or ‘selectioncheckbox’ or another to the datagrid.

Give it a nice rating if you like it.

answered
0

You can change selection mode of DataGrid as MultiSelection or SimpleMultiSelection.

In SimpleMultiSelection each time you click on any row it gets selected.

In MultiSelection to select multiple rows you have to hold Ctrl button, else it will work as Single selection

answered