Mewriick / Blazor.FlexGrid

GridView component for Blazor
MIT License
199 stars 35 forks source link

How to catch Event on row selection? #101

Closed ZedZipDev closed 4 years ago

ZedZipDev commented 4 years ago

How to catch row selection on click and call my own function? For example,

user clicks on row, the row is selected and the row details displayed in other component. user selects row and wants to download the object or print it etc. Something like this is partially implemented in https://github.com/gustavnavar/Grid.Blazor

It is I.e. on row click OrderDetail component called.

Mewriick commented 4 years ago

Hello @Oleg26Dev

you can use OnItemClicked event which is provided by FlexGrid

ZedZipDev commented 4 years ago

ok, thnx!