edited cell's text

I'm trying to catch enter in a bound grindcolumn, textbox style.It's ok, but when I read the currentcell text value, it gives back the old value, not the one already typed in. How can I get the current typed in text?

1 Reply

AD Administrator Syncfusion Team March 21, 2003 12:14 AM UTC

You use the ControlText from the cell renderer. Dim cc as GridCurrentCell = Me.Grid.CurrentCell Dim newValue as String = cc.Renderer.ControlText

Loader.
Up arrow icon