Hi, I am attempting to create a dynamic list of Radio questions and answers each question has a 'True' and 'False' option displayed as answers. My aim is to create a list from a database service response but the styling is being lost and the buttons don't work as a group. The trial code I am using is here will you take a look and advise me on this?
var allItems = '';
for (var i=0; i< 4; i++){
var inp ='Inputtxt' + i ;
allItems += 'a rel="nofollow"/aNo faultsFault
Item ' + i + ' text or description
';
}
Appery("checklist").empty().append(allItems);
console.log(allItems);