Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
In the page builder of a particularly massive page, when I open the Versions popup, I get an apex heap size error if I try to sort the table or use the ‘load more’ feature.
I have many fields where the Custom Label needs to change based on the yes no response to one questions. Feels like an easy “IF” statement in the Inline Code Section, but Javascript snippits in skuid are foreign to me. Am I on the right track?
Hi,I have a “New Oppty Creation” button on oppty skuid page with action type “Redirect to URL”. As a salesforce admin it works perfectly well for me and “New Oppty Creation” button opens the skuid oppty create page as expected but when I log in as a sales rep under standard user profile he/she cannot open the skuid oppty create page via “New Oppty Creation” button. Error message : “Illegal filter on Attachment. An unexpected error has occured. Your solution provider has been notified.(skuid).” is showing up.I went through all visualforce pages in details with visibility accesses,I went through profile comparison in detail …ect but I could not find the solution yet.Note : I have also created a “New Sales Oppty Creation” button on the standard salesforce Account page under “Buttons, Links, and Actions” with the same URL link to the new skuid oppty create page and this button works very well for me and for the sales team as well in this case. Would you have any idea on how to fix this ?Th
I have semi-successfully set up a REST Model with Read/Write behavior. I can successfully GET and PATCH records, it’s awesome!My problem: I’m asked for a Merge variable for my URL condition, but after I provide this and add the fields I want, I get an error message that states says “You do not have permission to update the value of this field: Composer Settings”. This is frustrating because it’s the only way to see all my fields without having to manually add them all.Any advice is appreciated, thanks!
Trying to get Intercom integrated to our app, ideally, we would put in the applicable intercom script in our master page so that it carries through to the entire app. I am able to put the code in a template component IF it’s on a page that has no master. If i try to do this on a page that has a master, or the master page itself, it’s a no go.Has anyone tried this before? What info can I provide you guys to help?Thanks,Mansour
I have an issue where a picklist field on the Opportunity Object for the standard Type field is showing value ‘Annuity’ on a Skuid page vs showing value ‘Assets/AUM/Model’ on the native SFDC page for the same record/same user. There are no translations for this field and there are no snippets on the skuid page that would alter it’s value. The value ‘Annuity’ also happens to be the first value in the dropdown. If I go to the record and change the dropdown to another value and then back to ‘Assets/AUM/Model’, then it correctly appears on the skuid page. Any ideas?
Ok, I need some help setting up conditions. There’s probably an obvious way to do this, but I’m not seeing it. Here’s the deal.I have two Models (A and B) on different objects. Both have a multipicklist field called List__c. We’ll call them ListA and ListBWhen a user changes ListA, I need to set a condition on B such that if any of the values of ListB for rows in B are in ListA, those rows will pass the condition.For example:ListA is set to Apple;OrangeThe Object B has rows:Row. ListBApple;Orange Orange Banana;Lemon Orange;Lemon What should my condition look like so that a query on B returns rows 1,2,4?I’ve been trying to use a ‘field from another model’ condition, but both ‘includes’ and ‘is in’ don’t seem to work the way I want.Do I have to use a ‘multiple specified values’ condition and inject the value every time it’s changed?
I have a custom currency field on the detail page which takes the price value of the asset we have. Now, when i save the record and after that the detail page of my record is loaded. I don’t see the symbol (in my case “$” is the symbol) of ORG’S Default currency.
Is there a way to trigger actions on close of calendar popup? It seems like “After Close Actions” are only available for regular popups, and not calendars?
Hi,I’m trying to find a way to have a UI field “Encrypted”I found in forum post, a snippet to accomplish it, but 2 problems1- does not seem to work on UI-Only field2- It’s not really encrypted…var field = arguments[0]; var value = arguments[1];<br>var minValue = value.slice(-4);<br>var text = "***-**-"+minValue;<br>skuid.ui.fieldRenderers.TEXT[field.mode](field, text); Any other ideas?I do no want to use a Salesforce Encrypted field, as data does not need to be saved
I am trying to update a field on context row but it is not getting saved to database. var seq = recordrow.Sequence__c-1; var rowsToUpdate = {}; model.updateRow(recordrow, ‘Sequence’, seq); model.save(); Any thoughts?
Hi GuysWe are currently running on a Salesforce Org that restricts the number of Custom Objects to 10.While in the Schema Builder i saw that Skuid creates a lot of Objects, f.e. “Page”, “Page Assignment” etc. that count as Custom Objects.Do those Objects count towards the total Custom Object Limit?Thanks!
We are showing the calendar page on external force.com site. We allow users to create event on skuid page but expose calendar on site for customers to book appointment for that event. When the calendar opens up, at the moment user has to keep clicking next arrow button to go to the actual event week or event month. So is there a way for the calendar page to automatically go to the existing event week or month by default, instead of user clicking next week/month on the calendar to reach to an event?
Hi,Is is mandatory to maintain the remote site settings for REST models in Skuid ?if so , can anyone help me understand why ?Thanks in advance.
Hi , I have an idea, and no really sure if feasible.On my accounts i have 2 fields named : ‘usercode’ and another ‘subuser’I would like to be able to create a Skuid page , where a user would input those 2 values, and skuid would return the account detail page if both those parameters match exactly an existing account. (i do not want the user to be able to lookup all the usercodes and subusers from picklist, popup…just to type in the 2 fields, and hit “search” or “save” button and if a match is found to be redirected to the record’s detail page. if not match is found, i would just show “an error message”Any ideas?If my explanation is not clear, feel free to ask anythingThank you
I would like to use a snippet to customize the display of events on the calendar component by referencing a snippet as shown below: However, the snippet documentation doesn’t seem to exist for this currently: Does anyone have any sample snippet code that shows what arguments are passed to the snippet when the event is rendered? My goal is to do some conditional formatting related to the status of events rendered in the calendar component.
I am trying top add a new filter on my table that will show records that the user is following.I have added a new model to the page with SObject EntitySubscription selected and added the condition to the main page model to filter records that their id equals to parentid in the EntitySubscription model. This filter does not seem to work. Does anyone knows what I may be missing? Thanks
I’ve been using this post and a couple of others to get my wizard to work the way I want it, but now I’m trying to fix a bug with it and can’t figure out how. I’ve created a wizard that converts an Opportunity to a custom object called “Sales Orders”. The wizard takes all the relevant fields from the Opportunity object and populates the wizard using URL parameters and a JavaScript Snippet on the “Next Step” button. All the fields work properly, but if I click “previous step” and then “next step” again it doubles all the rows on my table. Before I click Previous step Like so After I hit previous step I’m assuming this is because I have a loop that runs on the JavaSnippet, so I added an If statement before the loop to check if a variable “PreviousStepClicked” === 0 before starting the loop (and made “PreviousStepClicked = 1 after the loop”, but it doesn’t seem to work. I’m very novice in Javascript and know it’s probably something small and stupid that I’m doing wrong and would greatly
I want to send an email from a Skuid table to multiple selected people at the same time. Tried hacking the url to include multiple email addresses using a mass action button but the email addresses are not being passed. I have the semi colon in there because that is how multiple bcc’s are separated within SF. Has anyone successfully configured the URL to send multiple emails?URL: /_ui/core/email/author/EmailAuthor?rtype=003&p2_lkid=noreply@abc.com&p5={{{Email}}};
Hello All! I’m currently working with a client that would like to view related list at the account and contact level. As of now i have created a button and when clicked a pop up panel will appear showing the data. The problem is the customer would like to have to do less clicks in order to accomplish the request Ideally the client would like to have visibility as you would have with a normal related list. I mentioned that there is a lack of room to replicate a list view. Overall goal is less clicks, they don’t like the fact you have to click the button and then have a panel pop up. The client would like to have related list detail at the account detail page withOUT additional clicks.
I have a user that is trying to change the case owner on the case detail page. They get the following error when they save. The user is able to do this action on the default SF page so I’m not sure why the Skuid page is not allowing the save. They never had any issues doing this in the past. We also updated to the latest release Banzai - Update 8 this weekend.
How to render Few Custom Fields Based on the value selected in the picklist? Suppose if I select a value “X” from the picklist, then i should see fields ‘a’, ‘b’, ‘c’. In the same way if i select a value 'Y " from the picklist, then i should see fields ‘d’, ‘e’, ‘f’
Hi, I have a use case as below: I have an account Model Address__c (custom Object) Model (Has condition where address__c = accountModel_ID) The scenario is , if we have multiple addresses for the account , how do we display all these addresses as a picklist (using the addressLine-1 field values of all address records as picklist entries) and based on this picklist entry selected, need to display the address details in the address field editor. How can we achieve this ?
Salesforce has the gauge chart capability, which allows us to set revenue goals and see where our org’s progress is compared to the goals we set. I can’t seem to find a gauge chart option in Skuid (potential idea?). If other people have an idea for a work-around to incorporate some sort of goal-setting capability in the chart components, I would love to hear your ideas! Thanks!
I’ve got a few checkbox fields in a field editor. Two of them are conditionally enabled. Because they are conditionally enabled, they have an extra bit of CSS applied to them element.style { rgb(0, 0, 0);} I assume this is because when they are disabled, this changes to element.style {rgba(0, 0, 0, 0.298039);} to allow for it to look disabled. However, I am using the Lightning Design theme, and my basic .nx.basicfieldeditor-item-label css has a color: #54698d, so these conditionally enabled options look different even before they are disabled. What could I do to make sure that my item label when enabled has the color #54698d? In the screenshot below, Tax & Judgement Liens and Federal Tax Liens are the two conditionally-enabled fields.
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.