Custom Component Mapping
Thank you for correcting me on that. Unfortunately, that does not seem to work. I now have the code:
var version = Apperyio.storage.information.get("$['version']");
var verDate = Apperyio.storage.information.get("$['version_date']");
var ver = "Version: " + version;
var date = "Date: " + verDate;
console.log(date);
$("[name=version_value_lbl]").val(ver);
$("[name=version_date_lbl]").val(date);
$("[name=version_value_lbl]").show();
$("[name=version_date_lbl]").show();
I have the .show just in case it is needed since the labels have no value in them initially. The storage variables exist, they are being assigned to variables correctly, but the component referencing just is not working..