Learn about the latest Nintex capabilities at New at Nintex
All archived community articles, forum posts and groups. Here you will also find older K2 brokers as well as archived Group content.
Recently active
Hey folks!We are upgrading from SP2013 to SP2016 and have one Live Form which was previously completely anonymous on the interwebs for people to access.SP2016's External Forms settings look ... different. It's asking me to define users at domains? The "Allow Anonymous Access" checkbox is greyed out. Thoughts?? I am bamboozled. Thanks,rhia
Hi there,How do I build a validation rule on a form that will throw an error if the user selects more than three options in a "allow multiple selections" choice field?ThanksKassie
So I'm trying to require attachments when a specific question is asked. So I followed Nick Hurst's article on how to do this.  Nintex Forms conditionally require attachments – SharePoint and Nintex OOTB. So I have to alter it a bit as what selection I'm using is a tad different than what he uses. I have the following drop down control set like his parameters requireI here is what I have in for my JSfunction validateAttachments(source, arguments){var elm = NWF$(‘.nf-attachmentsTable’);var requesttypeValue = NWF$(‘#’ + RequestTypeClientID).val();arguments.IsValid = true;if (requesttypeValue == ‘Please send a purchase order along with my registration. Request must be submitted at least four weeks in advance.’) {if (elm.length > 0 && elm.find(‘tr’).length >= 1) {arguments.IsValid = true;} else {arguments.IsValid = false;}}}I had some parenthesizes in my statement that I thought could be the culprit, but removing those did not work. Hopefully someone sees what I'm messing
is it possible to restrict user from entering more than 4 digits in nintext text boxFor ex: 3456, after this it should allow user to enter
I would like some more details on how to configure the 'assign-to-do task' in the action tab. I am not understanding the 'content type', 'field', 'title', 'store task IDs in' configuration and the options I have for completing the task. The help button does not provide much information on this.
Hello AllAs the title suggests, can this be done? The "Add new row" text should appear at the top of the repeating section. If this cannot be done, is there a way to have a button and some java script to add the row instead?Thanks
I am using Event Driven Nintex Workflow of Project server 2013.How can I get the value of project custom field (PFA - document for detail scenario)Thanks in advance.Yogesh Patel
This seems so basic yet I cannot work it out for the life of me! So who better to turn to than my lovely community friends?I have a document library, with document sets, each with documents inside. I have a review workflow that simply asks for review of a document. In the email I want to reference the Document Set name and a link to the document set. I cannot see how to do this. Can anyone help?
When using a date in Nintex, it includes the time, which I don't want.Example: End Date: 1/1/0001 12:00:00 AMWhat I want is: End Date: 1/1/1001I'm sure this question has been answered somewhere before, but I can't find it. Thanks!!
I had testing with customer and most of parts of our solution works except this.Customer wants the Workflow Task list must be in Edit Mode as default. I told the customer, users can still edit by clicking on ellipses as shown:Customer said that its TOO many clicks for the users and asked to change the behavior.I created a new workflow on the Workflow Task list.I had simple three actions Workflow.I created a Regular expressions action to replace Display to Edit form and store in a variable.This are my configuration steps for regular expressions action:In the Update List Item action, I update the task name and pass my variable as follows: and in Fx button, I chose URL format. Somehow, Workflow Task is NOT creating items the automatically which I have already defined the Start Option but I will find a way for this. After I click it manually, I am able to update the Display mode to Edit mode in the Task name as follows:But when form is opened, it still shows as Display mode.I have seen Swe
I need to have a condition where a user is in a SharePoint Group. If so do something, if not don't do something.How can I verify a user is in a SharePoint group?
In Nintex Forms for SharePoint 2013, I have a List Lookup Control that displays data from a List of reference items elsewhere in my SharePoint site. How can I set the selected value of this list using jQuery (such as that shown below) and make it seem to SharePoint as if the user has made the selection in the UI?If I set the value of the List Lookup Control manually in the UI, the correct value is saved in my form item. However, if I set it with script, nothing is saved back to my form item. I know that there is some kind of magic going on in Nintex Forms when the user makes the selection manually, but I can't reproduce it with jQuery.NWF$('.expenseType option').each(function() {Â if(NWF$(this).text().toLowerCase() == myExpenseType.toLowerCase()) {Â Â Â Â NWF$(this).attr('selected', 'selected');Â Â Â Â NWF$(.expenseType select').trigger('change');Â Â Â }});Thanks for any suggestions or solutions!
Is there an easy way I'm missing here? Or is JS the only way to check whether the attachment control on a form contains something?thanks
 Symptoms  CORS header in SmartObject REST service Response Header.  Diagnoses  K2 does not currently support CORS header in SmartObject REST service Response Header.  Resolution CORS settings for the SmartObject REST services are not supported. The reason for this, is that the REST service is hosted in the host server, instead of IIS which means there is no web.config file to configure CORS settings. There is also no config entry that you can set in the K2HostServer.exe.config file to configure CORS. CORS is enforced by browsers. So if you have a site that is in a different domain, one way to get past the CORS limitation is to make the REST call server side with no browser/client interaction, and then pass the results back to the client.Â
I'm resetting a set of two radio buttons anytime a dropdown value changes. The following works, but how can I combine the two lines into one?NWF$("#" + DDL).find("input[value='No']")[0].checked=false;NWF$("#" + DDL).find("input[value='Yes']")[0].checked=false;
I'm encountering a message everytime when trying to open /save / publish a workflow."mysite.com is not responding due to a long-running script"we tried moving the workflow from one env. to another and this message is still encountered that sometimes we have to kill the page and start all over. Any thoughts as to what could be in the workflow that is causing this message and how can we make this better?Â
 Symptoms When executing the SmartObject that points to a list on a SP2013 site, then getting this error:Cannot set Column 'Checklistenkategorie_x003a_ID' to be null. Please use DBNull instead.Service: qateamsites_intranet_com___sites___526Service Guid:Severity: Error Diagnoses So the original issue was that you deleted a category inside a list and then re-created that category. K2 wasn't able to find the original category, so you had to make some changes in the SP List that K2 was able to "see" these items again.Here is how you described it:In SharePoint List "Checklistenelemente" there were items that came from a category out of a different list (Lookup Field). The testers deleted and re-created a category in that list. Now the items that referred to that category caused the problems. In the SharePoint list "Checklistenelemente", I had to refresh / update the items. Resolution We tried to link this to a TFS item so K2 would use the list name to detect the changes, however the issue h
Ok, I was thinking this was possible but for some reason it doesn't work. I've set the following rule condition on a validation rule for a people control. Essentially I want to require this control from being empty.Approver is the name of control. It does not matter if I have data in there or not, the control is never invalidated. Now, I've only been testing via preview. Is there some sort of bug that prevents this from working that I missed somewhere? Â
Has any of you seen a situation before where the Create event in Exchange Calendar for office 365 and SP 2016, creates the event successfully for some users and failing for only 2-3 users? The permissions are looking OK, the action is taking the credentials for an exchange admin account and the workflow is running fine and successful to the end. But the event doesn't show up on the calendars of "some" users.Â
Hello All,I have a form which has a number of dropdown choice controls which allow for "fill-in" text entry as well. Some of these controls need to have conditional validations rules set (i.e. if choice above = "xxx" then this is required") and i am trying to figure out the correct javascript syntax to do so.  I can easily use javascript to conditionally validate the control to check if no dropdown selection has been made, but how can I access the "fill-in" entry box to check if that is Null when the corresponding radio box is selected...See pic below for example...Hope someone can point me in the right direction
Users report receiving these two errors in six separate workflows (that we know of), on separate site collections, in separate web apps. These began to be received on the same day:Failed to send notification. Error during decryption. System error code 0.Error in request data action. Error during decryption. System error code 0.We began to receive these within days of updating the passwords to all our Service ID's in our environment. We haven't yet identified what the connection is (if any), what we may have missed, or how to rectify.Other observations:Both errors entail sending notifications. Not clear though, what is needing to be decrypted.Not all items running the same workflows incur this error.Not all workflows with notifications or data request actions incur this error.I'll likely open a ticket, but wanted to bounce this around in the forum first.Thanks!Eric
The File Management service broker provides the citizen developer the ability to perform file manipulations as part of a workflow. Fully documented with an installation and user guide containing samples, this service broker is fully supported by Method Automation Services.    Methods Include:Create Directory Directory Exists Remove Directory Disk Space Check File Copy File Exist Check File Move Rename K2 File Save K2 File to Disk K2 Five and 4.7 Compatible  Battel Tested and Production Proven! Click Here to download the service broker
We are facing a very serious issue since upgrading to the latest version of Nintex FormsThere's a Multiline Textbox in our forms which are hidden using CSS class (Visible and Enable values are true in the control settings) and the control is connected to the list column The control has a CSS Class of : hidden-control form-approver-summary And using Javascript on submit the below code gets called NWF$(".form-approver-summary textarea").val(""); try { if (typeof (generateFormSummary) == typeof (Function)) { var summary = generateFormSummary(); NWF$(".form-approver-summary textarea").val(summary); } } catch (e) { NWF$(".form-approver-summary textarea").val(""); } When the form is submitted the content of the summary variable should be populated to the connected column. The above isn't working in IE11 after the upgrade. There are no exceptions on the IE11 console. When I place a breakpoint on the above code and try to query the value using NWF$(".form-approver-summary textarea").val(), it
Nintex Forms 2013 Ver 2.10.2.0WIndows7, IE11This is a question that I suspect has been asked and answered before, but I could not find a reference under any of the search keywords I've tried.I need to create a Nintex Form rule that uses the 'or" runtime formula builder that has more than 2 conditions.Please, what is the best practice approach to solving for this?
Is there a way to define what the file name of the saved document will be? In a previous form in InfoPath, I was able to set the file name with a combination of the name of user plus the day's date. That way if multiple forms are created for the same person, it doesn't overwrite the other. Also, I can easily see whose form is whose. Essentially this is an assigned equipment form. So when staff are looking for people's form, it can be easily traced back to users
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.