Skip to content

Commit

Permalink
Add public getters to SelectedRow and SelectedRows properties (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavnavar committed Oct 20, 2020
1 parent 62af5b5 commit 3ab70cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GridBlazor/Pages/GridComponent.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public partial class GridComponent<T>
[Inject]
private IJSRuntime jSRuntime { get; set; }

internal int SelectedRow { get; set; } = -1;
public int SelectedRow { get; internal set; } = -1;

internal List<int> SelectedRows { get; set; } = new List<int>();
public List<int> SelectedRows { get; internal set; } = new List<int>();

[Obsolete("This property is obsolete. Use the new Checkboxes parameter.", true)]
public QueryDictionary<List<int>> CheckedRows { get; internal set; } = new QueryDictionary<List<int>>();
Expand Down

0 comments on commit 3ab70cf

Please sign in to comment.