Hi there!
I'm using the UltraWebGrid in my application and I would like to use the UpdateCell event but the problem is that everytime the event gets fired the focus gets lost and the cursor jumps into the address bar of my browser!?!Within the event handler I tried to set back the focus to the grid and re-activate the cell but these didn't work at all.
protected
void OnUpdateCell(object sender, CellEventArgs e){
uwgCashOverview.Focus();
e.Cell.Activate();
}
Does anyone know what I'm doing wrong or is that bug? Please I need your help! Thank you!
Kind regs,Dan