// LIST VIEW function onLoad(){ document.title = App.Properties.__caption; getAllRecords(); }; function getAllRecords(){ //Get all the records available in the excel building block App.getRecords(function(records){ var $container = $('#container'); //Loop through each record for(var i = 0; i < records.length; i++){ //Get the current record var record = records[i]; //Give each div an unique id var $divTag = $('
'); //Append the results to the html $('').attr('src', record.imageurl).appendTo($divTag); $('
').text(record.title).appendTo($divTag); $('
').text(record.description).appendTo($divTag); $container.append($divTag); } //On click save the currentID and navigate to Detail Block. $('.product').on('click', function() { var currentItemId = $(this).data('id'); App.Core.navigateToDetail(currentItemId); }); }); }; // INDEX My app