JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Data Grid › find a specific row in a grid › Reply To: find a specific row in a grid
May 13, 2022 at 4:39 pm
#103234
oliver.aldrian
Participant
But I want to select a row… and if there are no rows in the grid, how can I select one???
can you at least confirm that following statement is correct?
grid.SelectRows(projects.Where(x => x.Id.Equals(selectedProjectId)));
with projects being a List<Project> and Project being a class in my project.