MaskEdit Problem

Hello, I am using GridControl in my application. I have to use MaskEdit celltype in one of the cells. If i edit the MaskEdit cell with some value say 123456789 and now i move the cursor to 6 and delete 5 by pressing backspace an empty value is appeared between 4 and 6. the value looks like this, 1234 678. Again if I delete the value 4 and the resultant value looks like this, 123 678. I attached a sample application for this. Let me know how the aviod this. Thanks Suresh Mani Thanks Suresh Mani MaskEditProblem_9921.zip

1 Reply

AD Administrator Syncfusion Team May 14, 2004 12:58 PM UTC

Try setting these properties to see if this takes care of the problem. this.gridControl1[1,1].MaskEdit.PassivePromptCharacter = (char)0; this.gridControl1[1,1].MaskEdit.PromptCharacter = (char)0;

Loader.
Up arrow icon