Hi,
For some reason I am unable to use javascript to manipulate the DOM. I have a formula to calculate distance and its working and storing in the local variable i can see from the dev tools in chrome.
(code is the LSV I'm setting shows 8.9 miles)
so i want to display this on all the locations i have coming back from the list service from the database (which everything else is working fine)
I have tried using a label a div and an input with .....
document.getElementById("IdName").innerHTML = "TEST"; document.getQuerySelectorAll("className").innerHTML = "TEST";
$(".className").html("TEST");
$("#IdName").html("TEST");
Apperyio("componentName").text("TEST");
Apperyio("componentName").val("TEST");
and none of them work.
I just want to display the data coming back from the local Storage Variable
I have also tried setting the property to read from local storage variable in the events area within the editor and that doesn't work either.
Could someone offer any suggestions?