BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
If you want to customize the need while changing the Row focus, you can use CurrentRecordChanged or CurrentRecordChanging event. This event will be triggered when you change the focus from one row to another. Please make use of below code,
Code Snippet:
//Triggering the event
this.gridGroupingControl1.RecordNavigationBar.CurrentRecordChanged += new Syncfusion.Windows.Forms.CurrentRecordChangedEventHandler(RecordNavigationBar_CurrentRecordChanged);
void RecordNavigationBar_CurrentRecordChanged(object sender, Syncfusion.Windows.Forms.CurrentRecordEventArgs e)
{
//Customize your need
MessageBox.Show("Row focus has been changed");
}
//Triggering the event
this.gridGroupingControl1.RecordNavigationBar.CurrentRecordChanging += new Syncfusion.Windows.Forms.CurrentRecordChangedEventHandler(RecordNavigationBar_CurrentRecordChanging);
void RecordNavigationBar_CurrentRecordChanging(object sender, Syncfusion.Windows.Forms.CurrentRecordEventArgs e)
{
//Customize your need
MessageBox.Show("Row focus is changing");
}
Please let me know if you have any concerns.
Regards,
Neelakandan