BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Ralf,
Thank you for your interest in Syncfusion products.
If you want to set the Currentcell to be focused with editable while form is showing, you can simply set the CurrentCell’s MoveTo method for your needed cell using form Shown event. Please make use of below code and attached sample,
Code Snippet:
this.Shown += new EventHandler(Form1_Shown);
void Form1_Shown(object sender, EventArgs e)
{
this.gridGroupingControl1.TableControl.CurrentCell.MoveTo(3, 1, GridSetCurrentCellOptions.SetFocus); //Specify your needed cell index
}
Please let me know if you have any concerns.
Regards,
Neelakandan
Hi Ralf,
Thank you for your update.
Please let us know if you need any further assistance on this.
Regards,
Neelakandan