JO
Johnson
Syncfusion Team
April 19, 2008 12:31 AM UTC
Hi Shane,
Thank you for using Syncfusion products.
Issue 1:(Select the Text when enter into Editmode)
<<<<<<<<<<<
Please use below code snippet for fix this issue.
this.gridGroupingControl1.TableControl.Model.Options.ActivateCurrentCellBehavior = GridCellActivateAction.SelectAll;
Issue2:(Which event is fired when Text change in the cell )
<<<<<<<<<<<
//Event declaration
this.gridGroupingControl1.TableControlCurrentCellValidateString += new GridTableControlCurrentCellValidateStringEventHandler(gridGroupingControl1_TableControlCurrentCellValidateString);
//Event handler
void gridGroupingControl1_TableControlCurrentCellValidateString(object sender, GridTableControlCurrentCellValidateStringEventArgs e)
{
string ss = e.Inner.Text;
}
Please let me know if you need further assistance.
Best regards,
Johnson
SH
Shane
April 22, 2008 09:58 AM UTC
That worked fine.
Thanks
>Hi Shane,
Thank you for using Syncfusion products.
Issue 1:(Select the Text when enter into Editmode)
<<<<<<<<<<<
Please use below code snippet for fix this issue.
this.gridGroupingControl1.TableControl.Model.Options.ActivateCurrentCellBehavior = GridCellActivateAction.SelectAll;
Issue2:(Which event is fired when Text change in the cell )
<<<<<<<<<<<
//Event declaration
this.gridGroupingControl1.TableControlCurrentCellValidateString += new GridTableControlCurrentCellValidateStringEventHandler(gridGroupingControl1_TableControlCurrentCellValidateString);
//Event handler
void gridGroupingControl1_TableControlCurrentCellValidateString(object sender, GridTableControlCurrentCellValidateStringEventArgs e)
{
string ss = e.Inner.Text;
}
Please let me know if you need further assistance.
Best regards,
Johnson