If I have a client side script and I set a variable, lets call it {{id}} when I pass that variable like this in an APP client side.
On the client I run the script
window.progress.add({
id: "{{TestId}}"
});
The results is: vl6402idq2k63zn3q99rhp2ho ( what is that? It looks like the variable id or sometyhing.)
Also if I just use text and no variable it works fine and the results are as they should be. Like...
window.progress.add({
id: "ABC123"
});
Can I not pass a variable to the client browser? Is this a bug? I figure I should be able to pass that when the page loads just fine but I keep getting this odd string.