Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
My code is as follows:
function completeFormLoad() { var enumerator = listItems.getEnumerator(); while(enumerator.moveNext()) { var item = enumerator.get_current(); var identifier = item.get_item('Title'); var version = item.get_item('Current_x0020_Version'); var id = item.get_item('ID'); NWF$('.identifier:last').val(identifier); NWF$('.version:last').val(version); NWF$('.id:last').val(id); NWF$('.ci-items').find('a').click(); }; }
Can anyone tell me what I'm doing wrong or what else needs to be done to get the form to size correctly?