I have this function, and I would like it to work everything ok, I would like you to refresh the page, but it does not always update,
function GravarDados() {
var dataInicio = $("#txtDataInicio").val();
var dataFim = $("#txtDataFim").val();
var diaVencimento = $("#txtDiaVencimento").val();
var tolerancia = $("#txtTolerancia").val();
var valor = $("#txtValor").val();
var planoId = $("#cbplanos option:selected").val();
var tipoPlano = $("#txtTipoPlano").val();
var pessoaId = $("#id").val();
var proporcional = $("#lblProporcional").val();
var dataTolerancia = $("#txtDataTolerancia").val();
var vencimentoC = $("#txtVencimentoC").val();
var descricao = $("#cbplanos option:selected").text();
var pre = $('#cbpre').prop('checked');
var pos = $('#cbpos').prop('checked');
var pro = $('#cbproporcional').prop('checked');
var url = "/PessoasServicos/Gravar";
$.ajax({
url: url
, data: { DataInicio: dataInicio, DataFim: dataFim, DiaVencimento: diaVencimento, Tolerancia: tolerancia, Valor: valor, PlanoId: planoId, TipoPlano: tipoPlano, PessoaId: pessoaId, Descricao: descricao, Proporcional: proporcional, Pre: pre, Pos: pos, Pro: pro, DataTolerancia: dataTolerancia, VencimentoC: vencimentoC}
, type: "POST"
, datatype: "html"
, success: function (data) {
if (data.resultado > 0) {
location.reload();
}
}
});
}
I call this function here:
function closeModal() {
GravarDados();
$('#myModalPlanos').modal('hide');
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
location.reload();
}
And here's where I call the closeModal ()
<a href="#" onclick="closeModal();" class="btn btn-primary btn-sm">Gravar Item</a>
I have debugged several times, and it goes through all functions, without error, even it enters this one, just does not load the data.
public async Task<IActionResult> OnGetAsync(int? id)
{
if (id == null)
{
return NotFound();
}
PessoaVM = new PessoasViewModel
{
Pessoas = _context.Pessoas.Include(m => m.Classificacoes).SingleOrDefault(m => m.Id == id),
ClassificacoesVM = _context.Classificacoes.ToList(),
EstadoCivilVM = _context.EstadosCivies.ToList()
};
PessoasServicos = await _context.PessoasServicos
.Include(m => m.PlanosServicos).Where(m => m.PessoaId == id)
.ToListAsync();
ContasReceber = await _context.ContasReceber
.Include(c => c.Pessoas)
.Include(c => c.PlanosServicos).Where(c => c.PessoaId == id)
.ToListAsync();
if (PessoaVM == null)
{
return NotFound();
}
return Page();
}