hfmalves Posted May 6, 2022 at 11:09 AM Report Share #625910 Posted May 6, 2022 at 11:09 AM Boa tarde, Já levo umas horas valentes a tentar encontrar o erro, ou uma solução o que acontece é o seguinte: eu tenho uma tabela que, com a instrução onchange atualiza os valores de base de dados, mas, graficamente tanto muda como não muda o conteúdo, se fizer o refresh/F5 manual fica tudo ok, mas o objetivo era ser automático. As instruções funcionam o graficamente não, isso é que me esta a intrigar. function CriarProcesso(){ var NomeProcesso = document.getElementById("NomeProcesso").value; var dadosajax = { 'NomeProcesso' : NomeProcesso }; pageurl = 'URL/CriarProcesso.php'; $.ajax({ url: pageurl, data: dadosajax, type: 'POST', dataType: "text", cache: false, error: function(){ toastr.danger('Erro: Inserir Registo!!'); }, success: function(result){ if($.trim(result) == '1'){ toastr.success('O registo foi editado com sucesso'); $("#table-custo").load(location.href + " #table-custo"); } else{ toastr.danger('Não é possível registar.Tente mais tarde.'); } } }); } Mesmo com load em divs diferentes ou mesmo o Append, não estão a fazer o refresh. Spoiler Link to comment Share on other sites More sharing options...
Rui Carlos Posted May 9, 2022 at 05:34 PM Report Share #625923 Posted May 9, 2022 at 05:34 PM Experimenta fazer debug, e verifica o que é que o load está a obter. Rui Carlos Gonçalves Link to comment Share on other sites More sharing options...
Ivo Vicente Posted May 9, 2022 at 09:48 PM Report Share #625924 Posted May 9, 2022 at 09:48 PM Essa tabela é feita por ti? Ou é alguma biblioteca de tabelas? São detalhes que podem ajudar a perceber. Feito é melhor que perfeito Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now