Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
All archived community articles, forum posts and groups. Here you will also find older K2 brokers as well as archived Group content.
Recently active
Dear Nintex community I am starting my adventure with Nintex, JS and jQuery. I've spent alredy few hours trying to find solution this but seems that I still missing the concept... So what I have: 1. List on sharepoint with column "State" 2. In forms I've assigned as follows: 3. I've written this code in CustomJS field: NWF.FormFiller.Events.RegisterAfterReady(function(){var Sstate = NWF$('#' + varState);console.log("Sstate= " + Sstate + " Sstate.val()= " +Sstate.val()+ " Sstate.text()= " + Sstate.text() + " varState= " + varState);}); 4. and this is what I received in console log when I am opening the form: Sstate= [object Object] Sstate.val()= undefined Sstate.text()= varState= ctl00_ctl54_g_2e434ee3_cc48_4bca_87f0_294c48339002_ctl00_ListForm1_formFiller_FormView_ctl38_cd490519_949d_48e6_90af_d0f96aacd0a9 What the hell I am doing wrong? :) Why I cant see nowhere in console log that the value of field State is "NH"? Please help! :)
I am working to create a new form/list using the existing one with some changes on the form as well as workflows. Once the new form is ready, we want to switch off the old form and continue the workflows with the new form. The issue here is we have exported and imported the old form to create a new one and make amendments as per our requirements, alongside the workflows of the old form are imported into the new form. Now we want to break the workflow reference that is carried from old form, else we end up receiving the email notifications with the old form workflow references. Please suggest on how to break the interlink between old form workflows to the new form.
I am new to Nintex for SharePoint, somehow managing to create a form using a list app. Can we edit/modify/delete a choice column created for connecting the values to a label on the form? I appreciate the users for their time spent on answering the various question on this platform.
I am trying to upload DOCX and a pdf file into a document library. I have a valid stream and If I use SOAP action in Nintex workflow, I Can successfully upload the file but I wan to upload the file with using REST which should take the existing working stream. I can see file has been created successfully but content is corrupted. SOAP action which is working fine. REST action which creates a corrupted file.
In the approved form needs to put attachments files for are see in another approved form. I used the Repeating section because is easier to get URLs. I don't any problems get URLs and update list field with those URLs. For example, I get the URL <a href="https://intranet.coficab.com/preprod/Lists/Workflow%20Tasks/Attachments/203/Manual_Utilizador_BuildInstaller_V8_Windows.pdf">Manual_Utilizador_BuildInstaller_V8_Windows.pdf</a> but in list or in body email don't appears like a link. See attachment file
I'm hoping that someone can help me with a problem concerning forms and workflow. I have been asked to create a form that is used to assess risk for certain activities, each with 3 levels, scoring from 1 to 6. The form would then continue into further sections, requiring additional detail around these risks and mitigation. I started building the form. Most of it is fairly straightforward, but there are parts that require repeating sections. Normally, this wouldn't concern me because I would create a workflow to run on submission, which will process the all the XML chunks and format them as HTML in the list view. However, the customer needs to be able to report on the various risks and each of their scores. They also need the list view to be filtered so that they can show how many locations have x number risks and with scores of a particular value or above etc. There is also a need to be able to export the list to Excel for other teams to use outside of the organisation. The repeati
I have been successful in using custom validation to validate an SSN field or EIN field using the custom validation built into the field control settings ([0-9]{3}-[0-9]{2}-[0-9]{4} or [0-9]{2}-[0-9]{7}) however I have one SLT field that will hold the response for an EIN which may be an SSN OR EIN based on a choice field (Entity Type, choices are "Individual" and "Business"). Based on the choice in the Entity Type field i would like to set the custom validation so that the EIN entered is the appropriate pattern. How do I write the Custom Validation Formula if it depends on the value in another field? I have tried several combinations but cannot get the validation to work - the one that made the most sense was: fn-IfElse(Entity Type == "Individual"), [0-9]{3}-[0-9]{2}-[0-9]{4}, [0-9]{2}-[0-9]{7} The field cannot be blank and is already mandatory
Howdy, I'm building a form that has a drop down menu of parent organization names (Org1, Org2, Org3, Org4) in a column in the current list upon which the form is built. Each organization has n-children. Example Org1 may have a three children, Org2 may have 10 children, Org 3 may have one, etc. I have a mapping of parent Org names and children Org names. What I want is when a user selects from a drop down of parent Org names (e.g., Org1) that they are then presented with a checkbox control that has all of the children of Org1. Parent Org1 names and the mapping can be in another list if it's necessary but I'm not quite certain how to go about doing this. The parent Org names and the child Org names get updated/changed multiple times a year so I only want to have to change one source. If it wasn't clear the data is tidy. I.e., parent:child is Org1:Child1, Org1:Child2, Org1:Child3, Org1:Child4, Org2:different_Child1, etc Any help would be greatly appreciated.
Nintex New Responsive Forms is now available for Office365. You can see the list of current limitations here.
Using Nintex for SharePoint 2016, I created a new list workflow and in Workflow Designer > Workflow Settings > Edit Start Form > Edit with Nintex Forms, I'm working on a "Initiate Workflow" form. Everything is working fine in the Designer and Preview mode, except that when I pull a multi-select control onto the Designer canvas, it does not display checkboxes. In Preview mode, the control allows me to select multiple values using Ctrl-Left Click, but this will not be intuitive to my users, who will need a more obvious selection method: How can I display checkboxes with the text values? I tried something similar to what I used to have to do in InfoPath ((shudder)): I added a plain unconnected Choice control and it immediately showed the checkboxes with Option 1, 2 3: Unfortunately, after I connected it to my workflow variable, the checkboxes disappeared and only the value text showed as before. If it matters, the workflow variable is set to Display Format: List (Multi-Selec
I have a FlexiTask with 3 options; Continue with Project, Pause, Cancel Project. If the user chooses "Continue with Project", there are several fields which should be filled in before savings the task. I have been unable to get my rules to work. I've tried: and(contains(Decision,"Continue"),isNullorBlank({self})) as well as variations of using ", ', or none - I've used && instead of and(). I've tried Decision == "1" && isNullorBlank({self}), also not succesful.
Hello! I am very new to writing java script for Nintex forms. I have been trying to research how to program a button to update a date and time control. I have multiple date and time fields and would like to put buttons next to them that update to the current date and time when clicked. I'm starting at the beginning with learning how to write out the script so if someone could provide a little tutorial on how to connect all this it would be very appreciated! I know the button needs to be connect to java script and have a client ID and the control needs to store the client ID in javascript but I can't seem to get it all connected when I use script from other posts on here. Thank you in advance!!!
Hi All,I'm looking at doing some integration between sharepoint 2010 onpremise with Nintex workflow 2013 enterprise at a school and the canvas cloud based LMS.Canvas have quite a well documented API (Canvas LMS REST API Documentation )That can be called via REST and authenticated with oauth2 tokens.I don't think that the current call web service action can support this.Possibly the web request actionCan anyone advise if either of these actions will support this type of web request methods?The closest I have found in Nintex Doco isNintex Workflow for Office 365 - Calling a web service However that is for Nintex workflow for office 365.The build dictionary and call HTTP web service actions do seem to fit the bill perfectly.For the Nintex product guys: are these actions coming to Nintex on premise?CheersGavin
Hello everyone, I have a list which starts a Nintex workflow but, suddenly, the approver is facing an error (in the subject) when they try to approve tasks. I followed the instruction I found in a post and close the webpart. But it is still not working and, the worst is that the page is blank now( No error but even no page). Can I revert this operation? I am using the the Task List "Workflow" in the workflow setup. Does anyone have a solution for this? Best regards, Carlos Diniz
Hello All, I am working on a making a field required based on a drop down selection. I have a drop down with 6 items in it, if the user selects "Disagree" or "Strongly Disagree" from this drop down then I want to require comments. I have two validation formulas I have tried they are as follows: contains(JobPerfQuest, 'Disagree') and JobPerQuest=="Disagree" || JobPerfQuest=="Strongly Disagree" They only halfway work though. The form is STILL throwing an error even if I enter comments when selecting one of these options. Any assistance is greatly appreciated!!!
Hello! I am utilizing SharePoint 2013. I have a Nintex form (List A) with fields/columns to capture data for Workman Comp claims. This is sensitive data, therefore I have created a workflow (WF A) to write selected fields (that contain non-sensitive data) over to a second list (List B) for directors to review. This works great. However, there are times when certain fields in List A are modified by HR - and these changes need to be reflected in List B. So I created a second workflow (WF B) with a conditional start that utilizes the ‘Compare to Field”. The Conditional Startup Options start when items are modified and field (previous values) do not equal field. This is working wonderfully – however, now the directors want to know what specific fields were changed. I do not see “field (previous value)” available to reference. Can you please point me in the right direction to accomplish this? Any help would be greatly appreciated.
Hello experts, I have comma separated email ids, which stored in multiple line text variable, i want to validation each email. Example : xyz.zyx@xyz.com,myweb.xyd@xyz.com,myhr@myhr.com How can i validate it in nintex workflow. Please help
Hello Folks, This solution is intended to Manage Bulk admin Activities in K2 Blackpearl. Currenlty the solution exposes two functions.1) Remove Process Rights For Users In a Bulk input: Give a text file containing users seperated by line breaksGiven a list of Process names in a text file seperated by line breaks. -------------------------------------------------------------------------------------------Output The solution uploads the data from the files into smartobjects and then removes the rights for all the specified users in all the processes mentioned. -------------------------------------------------------------------------------------------- 2) Assign Process Rights For Users In a Bulk input: Give a text file containing users seperated by line breaksGiven a list of Process names in a text file seperated by line breaks. -------------------------------------------------------------------------------------------Output The solution uploads the data from the files into smartobject
Hello, I have been trying to create a workflow that is to update a date and time column in a list when a certain status from another column is chosen. I want the workflow to update the date and time column with the current date and time when a certain status is chosen. I was able to get a workflow put together but it saves correctly the first time and the second time when I save the item again it keeps defaulting the time to 12:00AM. The date portion works well. I tried the "Calculate Date" function, I have tried to build a date and time string and I have tried changing things in SharePoint. I have it set to only run on an item once. I have attached pictures of the first save and the second save below. If anyone has ideas on what kind of workflow would stop this from happening please let me know. Any help is much appreciated! Thank you in advance!
In a repeating section I have a decimal field that I have set to display as a percentage. In a new form, if I enter 25 for a 25 percent discount the form accepts it without any problems. However, when the form is opened after it is submitted, it displays in the field as .25% (this is actually 1/4 of a percent). If I edit the form to change the value (GP GGP field) to a fifty percent discount, whether I enter .5, .50 or 50, I get the following error message (in the screen shot, I entered .5): Is this a known bug or am I doing something wrong?
My workflow uses the Query list action to pull information from a lookup column in a list record and stores that information (numbers) in a collection variable ImpactedCCBGD. It then uses the For Each action to pull information from or Administration 2 list where the number in ImpactedCCBGD matches the record number in Administration 2. The workflow pulls the information for ImpactedCCBGD and logs the information in the history list. However, the workflow stops when the For Each action should run. This is my first time using the For Each action, so maybe I'm missing something?? Here's a screen shot of the workflow and action configurations.
I am an Admin and I'm attempting to remove 1 user and add another user. When I navigate to Users> User Permissions, the only user I see is my name, even though I know we have another user. Additionally, when I try to add a user, I am told I do not have a sufficient number of licenses despite having 5 licenses. I have navigated through all of our roles and I still only see my name as a user.
i am newbie in SharePoint and Nintex Workflow.One excel file is sent everyday automatically by a GPS system that contains some information of longitude and latitude that the number of records are variable everyday based on the vehicles movement.As the excel file created automatically by GPS system ,it is not considered as 'Table' and there is no 'Name' associated with it's fields. i intend to insert automatically the file contents (that is sent by GPS system everyday ) to SharePoint List by Nintex Workflow. To do this: i have created a 'SharePoint document library' and i myself insert the excel files into that, everyday manually and i have created a 'Nintex WorkFlow' and i have used 'Query Excel Services' component in it and as you know the 'Workbook path' and 'Sheet name' and 'Cells to retrieve ' should be known in order to use 'Query Excel Services' in my case the 'Cells to retrieve ' is variable in daily reports. i appreciate if you guide me toward this issue .
Hi all,I´ve three people picker fiedls in my form. PP3 should only be valid, if the input are exits in PP1 or PP2. Any ideas?
Hi, When i select my web service after refreshing (addUser), i can't use the soap builder (gray icon) and when i try to execute it I am receiving the following error: "Value cannot be null. Parameter name: requestUriString". and other error when i test connection : "Échec de la requête avec l'état" even if i use my account it's Private/Public problem, compatibility problem ? How can i fix this ?? Thanks
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.