Skip to main content
Nintex Community Menu Bar

I’ve got a snippet I’d like to run from both a row action and page title component. How can I dynamically set the row?

Row Action row var
c1c4652fa73af885c8d4f5b76fe6cd305e8cf862.png

Page Title Button row var

row = arguments[0].hasOwnProperty(‘item’) ? arguments[0].item : arguments[0].row;


This is called a ternary if statement, it checks if arguments[0] contains a property item. If yes it assigns to row arguments[0].item, otherwise it assigns arguments[0].row


Cool. Trying to trick me though? Found a typo.


And it was missing the .row in arguments[0].item :Pat


Sweet. Works.


It was a typo that I corrected 🙂