I have a form with an ultrawebgrid on it. When the user moves from the grid to the next textbox, I want to reset grid a so you cant see what cell was the last active cell.
How can I do this?
Regards,
Willie
Maybe use the AfterExitEditMode handler and use the setSelected function with parameter false
see: https://ko.infragistics.com/help/winforms/infragistics.win.ultrawingrid~infragistics.win.ultrawingrid.ultragrid~afterexiteditmode_ev
Let us know if it helped!
Good luck!
I have created a small sample that demonstrates the issue.
Steps to recreate:
1) click on overrings - type any number and press enter
2) click on sales in the second grid. - type a number Notice how the first grid' is keeping the last column
3) click back into the first grid overrings . type a number . use the cursor to move right one column. type a number. notice that the number goes in the bottom grid instead of the top. This only happens if I cause a postback on exiting the cell. In my case I must issue an postback because the calc manager doesnt recalc all of the cells until a postback occurs. The production app has formulas on each column so the user only enters data in the cells that matters.
Ignore the other message. I did not realize that I could add an attachment. I am attaching the sample. It is a single aspx that demonstrates the issue I am having.