Hello! I have a doubt. I'm developing a system for a furniture store. I want to make the owner edit the furniture that he has registered on the system. I can retrieve the data, but I can not put it in the fields of a modal window.
Theeditwindowwillbethis:
Icanretrievebankdataviaajaxandviacodeignitersegments.Buttheproblemistoputtheminthosefields.
$("#editarProduto").click(function(){
var id = $("table#tabelaEstoque tbody .colorir td:first").text();
if(id) {
$.ajax({
url: "HomeSistema/editarProduto/"+ id,
data: {id:id},
type: "post",
dataType: "text",
beforeSend: function() {
$(".loadWateEditProduto").show();
}
}).done(function(dataProduto){
window.alert(dataProduto);
$("#editarProdutoEstoque").show();
$(".loadWateEditProduto").hide();
}).fail(function(){
$("section#erroInternoEstoque").show();
$(".loadWateEditProduto").hide();
});
}
else
$("#selectProduto").show();
});