Hi Everyone,
This event is fired when we change the cell in wingrid, before it exits the edit mode.
This event is fired as desired at the right time.
Here is my problem
If we type text in a particular cell and press tab or change the active cell by mouse clicking, this event is firing but the value in the cell in that event is null (its a new row). It is not getting the value we type in the cell.
Can anyone tell whats the problem with this and how to solve it
Thanks in advance
Navi
Navi,
Try looking at the Text property of the cell instead of the Value. The Value will not be updated until the cell has successfully exited edit mode, and will contain the old value.
-Matt
Hi Matt
Thanks for the reply.
Actually iam getting the listobject of the activerow for checking the value.
Can you give me an example how to get the text property of a cell.
The ListObject will not have the value of the cell yet as it hasn't been updated yet. You need to look at the cell.Text property (i.e. this.ultraGrid1.ActiveCell.Text) to see what the current value is.
Thank you very much Matt.
I will give it a try.