Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi,I’m working on a validation issue where the field that needs to be validated has to be compared to a field from another model on the save button. I am pretty sure this has to be done with a snippet code. I wanted to see if someone can point me in the right direction.-Thanks,Adam N
I have a page with a queue component that has tasks. I wrote javascript to refresh the model every 60 seconds, so that any new tasks pop into the view of the sales rep. I’d like to hide the queue component entirely from the page if the model has no data rows. However, right now it looks like the component render conditions are run on page load and not each time the model is refreshed.I tried to find a solution here in the community, but couldn’t find an answer. Is there a way to refresh the render conditions on the component without reloading the entire Skuid page?Thanks in advance for any tips.Andrew
I have a table where the field has the “read only” checkbox clear, but I cannot edit the value. I’ve tried the default edit row action, a double mouse click, the Action “Update a field on row”, etc. Are there particular types of fields which cannot be edited? This is a DATE, and I’ve edited those before without issues.
I had css external links in my theme. I changed a field in my css yesterday and saved. I then noticed today that formating was failing. Somehow my external css resources are now missing and I did not delete them. I do not remember the linked resources. Is there a method to recover the version I had yesterday afternoon?
I have a UI Only checkbox field called ‘Hide’ on the work experiences model.(I have this field updated to = ‘true’ on a particular row via a row action) I am trying to create a snippet which will return true when any row has had this field updated to ‘true’. Then I am hoping to use this snippet for an enable condition to enable another field on the same model. This snippet below doesnt seem to work(I can verify x=true once I update only the top row to hide=true. Any ideas as to what I’m doing wrong? $ = skuid.$; var weModel = skuid.$M(‘WorkExperiences’); var weList = weModel.getRows(); var x;for (var i = 0; i < weList.length; i ++) { if (weList[i].Hide === true) { x= true; break; } else{ console.log(‘No’); x=false; } }
I have a table displaying multiple rows from a custom object. The edit action is a popup which displays the selected row in a field editor. The popup also has a page title component with a Save button. The page title and the field editor both reference the same model. The first Save action is to run a javascript snippet. How can that snippet determine which row is the active one on the popup? The snippet is passed an argument, “arguments[0]”, which is an object.Developer Tools console displays the object as: Object component: p context: Object editor: c initiatorId: 63 model: W row: Objectproto: Object The context, model, and row nodes can be expanded. For example, row opens up as: row: Object CreatedBy:ObjectCreatedById:“005t0000000HfckAAC” CreatedDate:“2016-08-18T22:34:18.000+0000” Crush__c:true Frequency__c:“1” Id:“a1fr00000004SszAAE” Id15:“a1fr00000004Ssz” <etc.> However, in spite of the fact that the popup was displaying and editing the second row from the table, the row obj
Little background: I’m creating a New Task popup in my Home page that details a scheduled task. I originally set up it’s primary model “AddTask” with ‘Create default row’ unchecked and a record limit of 1. In the Tasks table, I created a global action for Add New Task. under actions, I set ‘Create new rows in AddTask, start of the model, edit mode’, then produce a popup. In this New Task form I have a save which saves changes to AddTask, queries AddTask and the table model of OpenTasksToday and finally closes the popup. Here’s the issue: After the popup closes and the new task appears in the table, clicking on New Task again duplicates the form to enter tasks. Even though the box for ‘create default row’ is off since I’m doing just that in the actions section. I’ve found that removing the action for creating a new row and checking the ‘Create default’ in the model does work. I can confirm the way I originally had set it up worked a few weeks ago.
I couldn’t find this reported anywhere else, so I thought I’d stick a post on to highlight a potential issue with Sliding Panels. When I roll one over my page, it is being overlaid by the links for the Recent Items, the title of the recent items box, and also “Your name” and the App selection pill in the top right corner. Example below: The slider is of type “Reveal” and is being launched from a button in a Button Set. I’m on Windows 10 pro w/ Chrome 55 (latest). No weird plugins, Winter '17 Salesforce DE.
I have done the upgrade and just discovered my pages are not rederring or bombing on mobile devices.I am having issues in pulling up the site http://member.dorothy.com On my desktop the site does appear and work.On my Ipad it stops loading after it fills the screen and I can not scroll down.On my Iphone it stops loading and if I actually sign in I get “aw, snap”I an able to get to the page if signed onto Salesforce but not the public site.
I don’t have the option to group an aggregate model using a salesforce formula field. Is that a limitation, or am I just doing something wrong?
Hi everyone - pretty new and I’ve stumped myself. I have a table that I am populating with 10 records, but I want to give the ability to my user to expand to 15, 20, etc., rows as they need to see more info. How do I make this happen?
I am trying to upgrade my Skuid version to Brooklyn in sandbox and I get the below error. Anyone else have this issue? I have opened a ticket with SF but wanted to check here as well.Error Number: 1838502596-4787 (779909974) Problem: 1. No COMPONENT named component found mobilepagebuilder: No COMPONENT named component found 2. No COMPONENT named listViewManager found Ui: No COMPONENT named listViewManager found 3. No COMPONENT named component found pagebuilder: No COMPONENT named component found 4. No COMPONENT named listViewManager found page: No COMPONENT named listViewManager found 5. No COMPONENT named listViewManager found page: No COMPONENT named listViewManager found
Is it possible to modify a search entry before it hits the database? I’ll give an example of what we’re doing below.In our salesforce we house Store Numbers, they are formatted with 6 digits, so examples include 003904, 002112, 032394, etc.We have a request that if a user enters “3904” that it should pull up “003904”, right now it does not. Is there a way to add those leading 0s before the request is sent to the database?
Is it possible to skin the record page type with the current skuid theme I’m using? How would I go about this starting with the lead record type? Thank you!!
I spent most of yesterday trying to add an arbitrary button to my Skuid pages/pop ups, and in the end concluded that I either had to use “empty” page titles or perhaps some HTML in a “Template” - which did give me action/styling headaches. These were the tips (perhaps outdated?) that I picked up from the Internet, combined with my own innovation… Then as I work through some other stuff today I came across this: The Button Set Component Where is this?!! I don’t have it in my Layout menu… I’ve looked all over for it; and I would have loved it 24 hours ago 😃 Menu: Nope: Whats the trick? Can someone teach me the secret handshake to custom buttons? Cheers.
We are using Skuid version 8.11I created a detail button on the standard Case object in Salesforce. The button has the following URL: /apex/ERPOrderRequestRedirectPage?caseId={!Case.Id}&contactId={!Case.ContactId}&division={!Case.Division__c}&caseNumber={!Case.CaseNumber}I created a new button on our Skuid page that references that SF button. The Skuid page is used within the Service Console in Service Cloud.On the standard Case page layout the button redirects to the correct page. The Skuid button that references the detail button throws the following error: “fotlinc--dev1--cs63.my.salesforce.com is not an authorized domain”If I put the same URL into the Skuid button instead of referencing the SF button (changing the merge variables), then it redirects fine. I have tried whitelisting that domain in the Service Console app, but it didn’t make any difference. I would rather not hardcode that URL into the Skuid button since we have a standard button that does the same th
Each time I save a new lead record, I get directed to the standard chatter feed in an iframe with blank fields. Can someone tell me how wrong I am here? Thanks!
super noobie here to skuid, but looking forward to customizing every aspect of my projects with the help of this community 🙂I’d like to add a:hover to the text/font-awesome characters in the side navigation menu. I have managed to lock in the side navigation and use a jquery sliding panel, but the css portion is messing me up. Any pointers, would be greatly appreciated. thank you in advance…
This could be an easy one for someone out there, I’m trying to use the Render Conditions on Page Title Properties within a report with tabs. When The user clicks on LEADS OWNED BY Bob Rogers, only that page title should render. When the user clicks on the ALL LEADS tab, the LEADS OWNED BY All Users should render and the other page title, LEADS OWNED BY Bob Rogers sould dissappear. Is this possible? I tried but no luck… Thank you!
Is there a way to generate a ICS file based on a calendar event?
Hi Experts,I have an interesting requirement in which we would like the ability to control the rendering of components of a page externally (without modifying the skuid page) so maybe using a custom setting.Example:The Documents Page contains Tabs 1 to 8 and within those tabs there are field editors with multiple sections.now when the document page loads with Division=Marketing I want my users to see only selected tabs and sections relevant to that divisioncan see: Tab1, Tab2, Tab3can see: section1 in Tab1, section3 in Tab1All other irrelevant tabs and sections should be hidden.Currently we have these rendering conditions setup on individual components and every time there is a new section/tab added we have to modify the skuid page and test everything. Also, we would like to make this process more streamlined and efficient (hopefully with the help of a Custom Setting) so any new changes can be done quickly with limited or no changes to the skuid pageHas anyone been successful in implem
Has anyone or does anyone know how to hook this API into a skuid page?
The page doesn’t load since updating when using id={{$Model.Leads.data.0.Id}} as a query string.Any ideas of how to correct this?
I have a requirement to be able to set the page on a data table. The scenario is this. The user is on a page that has a tabs and one of those tabs displays related records. The user clicks on one of the related records to go to that record from that record we navigate back to the parent record. The request is to bring the user back to the parent record and tab so that the user is in the same page of the data table.
is there a way to paste say a bunch of items in a search field and skuid searches them all in one go ?
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.