protected void odsControleCreditos_Deleted(object sender, VirtualObjectDataSourceStatusEventArgs e) { if (e.Exception != null) { e.ExceptionHandled = true; Glass.MensagemAlerta.ErrorMsg("Falha ao excluir crédito.", e.Exception, Page); } }
protected void odsCentroCustoAssociado_Updated(object sender, VirtualObjectDataSourceStatusEventArgs e) { if (e.Exception != null) { Glass.MensagemAlerta.ErrorMsg(null, e.Exception, Page); e.ExceptionHandled = true; } grdCentroCustoAssociado.DataBind(); grvDetalhesCentroCusto.DataBind(); }
protected void odsCliente_Updated(object sender, VirtualObjectDataSourceStatusEventArgs e) { if (e.Exception != null) { throw e.Exception; } else { // Necessário porque o Insert Cliente retorna um SalvarClienteResultado e o Update um SaveResult var resultado = ObterSalvarClienteResultado(e.ReturnValue as Colosoft.Business.SaveResult); ClienteSalvo(resultado); } }