
Код: Выделить всё
...
callAPI("/activites/prestationsFromGroupes", "POST", JSON.stringify(groupes)).then(prestationsGroupes => {
let htmlPrestations = "";
for(let i = 0 ; i < groupes.length ; i++) {
let groupe = groupes[i];
let prestations = prestationsGroupes[groupe['id']];
let active = (i == onglet ? 'active' : '');
htmlPrestations += '';
htmlPrestations += ' ';
for(let j = 0 ; j < prestations.length ; j++) {
let prestation = prestations[j];
let autoriseVae = prestation['autoriseVae'];
let cuissonApplicable = prestation['cuissonApplicable'];
let cdeCuisine = prestation['cdeCuisine'];
let CSSbgcolor = prestation['couleur'] == "" ? "" : 'style="background-color: '+prestation['couleur']+';"';
htmlPrestations += ' [url=javascript:void(0);]';
htmlPrestations += ' ';
htmlPrestations += ' '+prestation['libelle']+'';
htmlPrestations += ' ';
htmlPrestations += ' ';
htmlPrestations += ' '+prestation['prix']+" €";
htmlPrestations += ' ';
htmlPrestations += ' ';
htmlPrestations += ' ';
htmlPrestations += ' [/url]';
}
htmlPrestations += ' ';
htmlPrestations += '';
}
$("#pills-tabContent").html(htmlPrestations);
...
Подробнее здесь: https://stackoverflow.com/questions/784 ... p-containe