I have a grid where a single column is editable. When editing this col, page up/down does not work. Is there a way to make this work?
If a cell is in edit mode, PageUp and PageDown are handled by the editor, not the grid. You can press F2 to exit edit mode on the cell and then press PageUp/Down.
Another option might be to handle the KeyDown event of the grid, trap for PageUp/Down and then use the PerformAction method to ExitEditMode, and then PageUp/Down.
I'm guessing you might have to exit edit mode on the cell before page up/down would work.