Skip to content

Commit

Permalink
Update custom sample to use proper way of getting grid columns. (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
skrustev authored Oct 30, 2024
1 parent 0fede0b commit 1bd7ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/grids/grid/finjs/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@
public void OnCellClick(IgbGridCellEventArgs e)
{
int colIndex = e.Detail.Cell.Id.ColumnID;
IgbColumn column = grid1.ActualColumnList.ElementAt(colIndex);
IgbColumn column = grid1.GetColumns().ElementAt(colIndex);
if (column.Field == "Chart")
{
string key = e.Detail.Cell.Id.RowID;
Expand Down

0 comments on commit 1bd7ec8

Please sign in to comment.