9/3/2010 4:38:51 AM
Title:
Datagrid cell restrict
Hi,
How to restrict Datagrid Cell?
I want to enter only numbers. How to enter?
With Regards,
K.V.Ramakrishna
9/3/2010 5:59:36 AM
use itemrenderer and place textfield inside itemrenderer which will be used as DataGrid cell, now you can use the restrict property of textbox to restrict the characters that can be entered. i.e to allow only nymbers use
myTextBox.restrict = "0-9";