Nintex forms get logged in user display name and current list name -


in nintex forms writing bit of javascript , need properties of current list, list name, current list item title. how using javascript using nintex forms? in javascript section there separate area called, "insert reference" don't know how work.

to started, enter in custom javascript setting of form-

nwf$(document).ready(function($) {   console.log(); }); 

then cursor between parentheses of console.log line, enter quote, click on insert reference button , pick variable, insert quote.

the result like-

nwf$(document).ready(function($) {   console.log("list_name"); }); 

list_name in red text.

things watch out are-

  • the nintex symbol inserted literal text, not string javascript variable, need put quotes around or javascript try interpret value variable name.

  • if write code in separate text editor, paste form (which makes lot of sense), you'll have re-insert nintex variables lose "magicness" when pasted in text.


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -