Is there a way to get the selected rows in a kinetic grid without setting up the checkbox column? I have to imagine there is since Kinetic has the “Copy Selected (with Labels)” options in many of the overflow menus. The checkbox method of selecting rows is too slow for our users, selecting them one by one.
2 Likes
If your grid was named grid1 grid1.Selected.Rows would get you the list of rows.
In one of my customizations, I use a foreach(var rowsSelected in grid1.Selected.Rows) to cycle through the rows in one of my customizations.
Thanks, but I’m trying to get the selected rows in a kinetic grid, not a classic UI grid.
There was a change to the Part search screen that allows this very thing with the checkbox column. No events appear to be triggered when you select rows. Maybe this is a row rule? Why only on the Part search screen?