Skip to main content
Nintex Community Menu Bar
Question

Error while trying to access Custom Label from Skuid (from JavaScript)

  • July 10, 2024
  • 1 reply
  • 9 views

Forum|alt.badge.img+2

Hello There ,

I am trying to access 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 ?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+2
  • Author
  • July 10, 2024

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);

});