How to put Collapsible List Group in ajax?

Asked

Viewed 19 times

1

I’m willing to put tabs for when the person touches the category open a list of products, but I’m not getting[![

$(document).on("click","btnMesa1",function(evt)
{
	$.ajax({
		type:"get",
		url:"http://localhost:8080/ProjetoXDK/appModelo/www/php/funcao.php",
		data:"acao=listarprodutos",
		dataType:"json",
		sucess: function(data){
			var $itemlista = "";
			$.each(data.registro,function(i,dados){
				$itemlista += "<input type='checkbox' name='escolhe' class='check' onchange='showQtd(nome,this)' value='' "+dados.codigo+"<label>"+dados.nome+"</label><br>"
                + "<label>"+dados.preco+"</label>"});
			$("lstRelacaoProdutos").html($itemlista);
		},
		error: function(erro,exception){
			navigator.notification.alert(erro.responseText);
		}
	});
	activate_subpage("#produtos");
});

]1]1

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.