Can somebody post the sequence of how events are fired on Ultrawingrid at both the rows and cell level. I am trying highlight the value in a cell, whenever user tries to edit the value in that cell. I am not able to highlight it and also once the key is pressed control exits the cell.
Thank you
there should be some way to learn about all these features, is it documented any where...for example features like editorwithmask..it will be easy for the newbies like me who just started using infragistic controls...Thank you!
Hello Mike, That works awesome! Thank you so much for your time.
Okay, it's probably because of the underscores. You have a mask applied to the cell. So that's easy to fix. You just need to get the raw text from the editor, instead of using the cell's text.
string cellText = ((EditorWithMask)grid.ActiveCell.EditorResolved).GetText(Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw);bool success = decimal.TryParse(cellText, out cellValue);
please have a look at the value of ActiveCell.Text exactly what I got
ActiveCell.Text is "____400.00" and it returns false when trying to convert into decimal.