// DETAIL VIEW function onLoad(){ document.title = App.Properties.__caption; window.App.Core.getCurrentRecord(function(record) { getRecord(record); }); // Will update the current record when the user uses the next/previous buttons on the screen window.App.on('currentItemChanged', function(record) { getRecord(record); }); }; function getRecord(record){ //Record does contain the JSON version of the selected item //Show a popup with the results of the Excel sheet in JSON format //alert(JSON.stringify(record)); //Get the DIV with the specific ids and insert the result of the Excel sheet fields document.getElementById('photo').innerHTML = ''; document.getElementById('title').innerText = record.title; document.getElementById('description').innerText = record.description; }; //Example index.html JavaScript Block