Love it! Thanks.
http://help.skuidify.com/m/11720/l/129517
Hey Matt,
I know this is an old post, just wanted to see if you can give an idea.
I am trying to use a label as shown below:
var specialSegment = skuid.utils.mergeAsText(“global”,“{{$Label.Special_Partner}}”);
but have got an error saying :
skuid__SkuidJS:26 Uncaught TypeError: Cannot read property ‘organizationId’ of undefined
Any idea on how to utilize this method from utils ?
I got this working.
If anyone out there is looking for same problem solution:
The reason was : The Skuid.utils.userInfo object is only available once the page is loaded.
So if you intend to access this in “inline” snippet
$(document.body).one(‘pageload’,function(){
//Here you should be able to access as shown below
var specialSegment = skuid.utils.mergeAsText(“global”,“{{$Label.Special_Partner}}”); console.log(‘specialSegment from Label’,specialSegment);
});
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.