When this code executes, it does select the row, though doesn't fire the RowSelected event? How can I get the RowSelected event to fire in these case. (It does fire if I manually select it by clicking on it).
public void OnEventDataBound(object args)
{
// The filtered index values are selected
this.grdEvents.SelectRows(SelectedEventIndex);
}
<EjsGrid DataSource="@EventList" @ref="grdEvents" Height="200">
<GridEditSettings AllowAdding="false" AllowEditing="false" AllowDeleting="false" ShowDeleteConfirmDialog="false"></GridEditSettings>
<GridEvents RowSelected="EventSelected" RowDataBound="EventRowBound" DataBound="OnEventDataBound" TValue="Events" />
<GridColumns>