Hi,
I'm trying to read multiple database items into a local variable and then show them 1-by-1. I'm using the folowing but getting a NILL return back? Anyone please?
I have added the "LanguageVariable" local variable and linked it to the Database item and have added the Skip local variable and linked it too?
var Taal = localStorage.getItem('LanguageVariable');
var i = 0;
while ( i < 5 )
{
localStorage.setItem('skip', i);
ReadLanguageService.execute();
i = i + 1;
Taal = localStorage.getItem('LanguageVariable');
alert(Taal);
}