Skip to main content
Nintex Community Menu Bar

There should be shorthand for the snippet methods similar to what there is for model stuff.

  • July 8, 2024
  • 1 reply
  • 1 view

Forum|alt.badge.img+6

it would be nice if there was a shorthand type reference to the snippet stuff.

 eg $Snip.getSnippet()

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+13

Jerry, in your code you can define your own shortcuts very quickly like this:

var $Snip = skuid.snippet;

$Snip.register(‘AddNumbers’,function(a,b){return a+b;});
$Snip.get(‘AddNumbers’)(1,2); –> 3