We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Allow Number Only characters in ComboBox cell of virtual grid.

Hi,
Is there property of GridStyleInfo or something similar to achieve the subject?
What would you recommend?
Thank you,
Alex Feldman.


2 Replies

SR Sri Rajan Syncfusion Team September 20, 2008 03:59 AM UTC

Hi Alex,

Thank you for your interest in Syncfusion products.

Please try this code to solve this issue and let me know if this helps.

void gridControl1_CurrentCellKeyPress(object sender, KeyPressEventArgs e)
{
GridCurrentCell cc = this.gridControl1.CurrentCell;
if (this.gridControl1[cc.RowIndex, cc.ColIndex].CellType == "ComboBox")
{
int key = (int)e.KeyChar;
if (key >= 47 && key <= 58) { }
else
{
e.Handled = true;
}
}
}


Best Regards,
Srirajan.




AD Administrator Syncfusion Team September 22, 2008 02:35 PM UTC

Thank you, Srirajan.
The path you suggested works well with some minor specific adjustments for our application (like CellType and additional condition for ignoring not numbers).


Loader.
Live Chat Icon For mobile
Up arrow icon