Hello, I am using the UpdateCell event for server side validation, it works fine, but when I try to change others cells values it does nothing. What I am doing wrong?, It's not this the right event?.
Sample code:
If e.Cell.Key = "Referencia" Then Dim oItem As .... Dim oA As ..... oItem = oA.BuscarPorReferencia(e.Cell.Text, "") e.Cell.Row.Cells(Me.UltraWebGrid1.Columns.FromKey("NombreProducto").Index).Text = oItem.Nombre
End If
I don't believe that WebGrid raises any server-side event when you change the value of a cell on the server. UpdateCell is only raised when the value of a cell changes on the client.
Yes, that is true. I mean that when I change others cells values during = the updatecell event, those values does not appear in the grid.