public void MostrarItem(UltraGridRow Row) { ItemClasificacionExistencia Item = (ItemClasificacionExistencia)Row.Tag; Row.Cells[colCodigo].Value = Item.Codigo; Row.Cells[colNombre].Value = Item.Nombre; Row.Cells[colActivo].Value = Item.Activo; }
private void grillaTiposClasificacion_CellChange(object sender, CellEventArgs e) { ItemClasificacionExistencia Item = (ItemClasificacionExistencia)e.Cell.Row.Tag; switch (e.Cell.Column.Key) { case colCodigo: Item.Codigo = Convert.ToString(e.Cell.Text); break; case colNombre: Item.Nombre = Convert.ToString(e.Cell.Text); break; case colActivo: Item.Activo = Convert.ToBoolean(e.Cell.Text); break; default: break; } this.MostrarItem(e.Cell.Row); }