IgniteUI / igniteui-blazor

Ignite UI for Blazor component library packs 35+ native Blazor UI Controls with 60+ high-performance Charts designed for any Blazor WASM or Server-side app scenario.
https://www.infragistics.com/products/ignite-ui-blazor
3 stars 3 forks source link

Binding IgbGrid.SelectedRows does not appear to work #44

Open agoldenbaum opened 1 year ago

agoldenbaum commented 1 year ago

Steps to Reproduce:

  1. Run the attached sample project.
  2. Select some rows in the grid

Actual Behavior The bound Object[] to the SelectedRows collection of the grid remains null

Expected Behavior The Object[] should be populated with the selected rows

NewGridBlazorTest.zip

IGvaleries commented 1 year ago

this works when using 2-way binding on the SelectedRows property: <IgbGrid Height="500px" @ref="GridRef" Data="Data" AutoGenerate="@false" ResourceStrings=@gridResStrings RowSelection="@GridSelectionMode.Multiple" @bind-SelectedRows="@BoundSelectedRows" >

mddifilippo89 commented 7 months ago

@dkamburov is this something Grinders can look at next spring?