Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
We have several pages built in Skuid that utilize Ui-Only fields. Since upgrading to Millau (11.1.13) these picklists are all rendering blank. This is causing a lot of issues for us as we uses these on pages that get a ton of daily traffic and those fields are essential to the page.Any ideas what is causing them to load empty?Thanks,Adam
Hello folks! I need to create my own custom pagination within a Skuid page. I was wondering if there were any javascript methods I could tap into to, for example, access or change the number of records picklist (see screenshot). Another thing that would be useful is to know which page of the pagination the user is on. Cheers! Louis
This is a very strange problem that had an even stranger solution, but just in case anyone else comes across this, hopefully you don’t have to spend 10 hours on it like I did.Scenario: model on MyObject__c custom object has a condition “MyObject2__c.FormulaCheckbox__c != true”. Works fine in standard salesforce, but in a Partner Community I was getting the error “java.sql.SQLException: ORA-00936: missing expression” Could be related to this known issue: https://success.salesforce.com/issues_view?id=a1p300000008XwYAAU&title=a-soql-from-a-community-p…The error went away when I made the MyObject2__c field on the MyObject__c page layout a required field and then refreshed the fields on the MyObject__c model in the skuid page.
I’m attempting to calculate % of opps in drawer of opps. A field renderer doesn’t work because I can only run the code once the context for the table has been applied for all rows to make renderedlist complete. This snippet seemingly is good to go except the updateRow function does nothing. var params = arguments[0], OppsBySPByStageDrawerTable = skuid.$M('OppsBySPByStageDrawerTable'), models = [OppsBySPByStageDrawerTable], listSum, $ = skuid.$; // loop through all models used in drawers to update their percentOfOpps within drawer $.each(models, function(m,model){ $.each(model.registeredLists, function (l,list){ listSum = 0; $.each(list.visibleItems, function(i,item){ listSum = listSum + item.row.countId; }); $.each(list.visibleItems, function(i,item){ model.updateRow(item.row,{percentOfOpps: item.row.countId / listSum}); }); }); });
We are currently unable to create users or access Skuid settings in our salesforce org. We are receiving the below error. Could not locate metadata file: StandardEinsteinActivityCapturePsl-1.uld.xml.
Skuid 11.1.13 Themes Updated Any theme.
Hello I would like to publish an event to send data from a skuid aggregate model to a lightning component. skuid.events.publish(‘AggMessage’, JSON.stringify(payload)); AggMessage is never making it to the component listing on <aura:handler event=“skuid:event” action=“{!c.handleSkuidEvent}”/> I’m assuming this is because the publishing scope of AggMessage needs to be set to “All active pages and Lightning Components” How do I set event scope from code? Thanks, Peter
Hey team,We’re on the Skuid 11.1.13 for Salesforce and oops–some of our picklists are now broken which were working in all prior versions including 11.1.11.The issue appears to be with special characters such as an ampersand (&) being in the picklist. These are showing up blank to the users in Skuid however when they save it looks like they’re not being encoded properly so they show up as “&amp;”.Example: “Joint & Several” picklist is blank in Skuid, when saved becomes “Joint &amp; Several” in the database.Help me Skuid community, you’re my only hope! 🙂Thank you,Dan
Hello,We have a UI only fromula field that is attempting to display a date one day prior to a given date:YEAR({{Week_End__c}} - (1000246060))+‘-’+IF(LEN(MONTH({{Week_End__c}} - (1000246060)))=2,MONTH({{Week_End__c}} - (1000246060)),‘0’+MONTH({{Week_End__c}} - (1000246060)))+‘-’+IF(LEN(DAY({{Week_End__c}} - (1000246060)))=2,DAY({{Week_End__c}} - (1000246060)),‘0’+DAY({{Week_End__c}} - (10002460*60)))So when the Week_End__c is 5/11/2018, it should display 5/10/2018. This works as intended when the user’s computer is set to the EST. However, for every other US time zone it calculates for 2 previous days, so it’s showing as 5/9/2018. We have a field like this for the 6 prior days from Week_End__c, so there is an off by 1 error for all of them. Our org default is EST, so I’m assuming the discrepancy there is the problem. I’ve been playing around with those modifying values but nothing seems to be working that doesn’t throw the dates off for the other timezones as well.
We seeing another rendering problem on a complex skuid page. The Rendering problem started on Monday 5/14 on the Summer '18 Release in a Sandbox. It was rendering fine in Lightning on 5/11.The page is rendering rendering fine in preview mode from the builder but in lightning we’re seeing a javascript error from the skuid namespace.TypeError: Cannot read property ‘split’ of undefined at j (skuid__SkuidJS:24) at m (skuid__SkuidJS:24) at i (skuid__SkuidJS:24) at eval (skuid__SkuidJS:24) at l (skuid__JQueryJS:2) at Object.m (skuid__JQueryJS:2)The effect is that table header information in printed over and over on every row. Unfortunately the data is customer private so I can’t post or share a screen shot. Is this a known issue?Thanks,Peter
Hello all!Just wanted to highlight a bug in the tab component where the tabs don’t wrap correctly. It’s hard to describe so I made a video… I’ve seen this in multiple orgs but haven’t gotten round to documenting it until now.Cheers!Louis
Hello folks,One thing I’ve noticed using a public Lightning Community is that whenever you save a Skuid page and it updates the page pack static resource it overwrites the Cache Control to Private. We have to set this to ‘Public’ to get the Skuid page to load in a public Community. It’d be cool if Skuid could provide a setting to make the page pack public rather than private.Cheers!Louis
Attempting to unpack Page Assignments from our production account into one of our sandboxes for testing purposes. I had no issues unpacking the Pages, but when I unpack the Page Assignments the page just stays on “Unpacking Page Assignments in selected Static Resources…” and never changes, unpacks, or even gives an error message.I’ve gone through some old threads, but nothing has worked yet.Thank you,Adam
As per subject. I can work around this in XML, but still needs to be addressed.
Themes up to date. Skuid 11.1.11 Working styling in other themes. Investor, Slated & Lightning Design themes.
I’ve playing around with Skuid Platform today. Got it connected to my Salesforce Dev environment, and have been successfully building pages/models using SF as a Data Source. I keep randomly getting this message, which will go away, and then come back later without any changes to the Authentication and/or Data Source configurations. Authentication & Data Source configuration below:
Hi: I don’t know javascript and I have been trying to get this to work for hours. I have a multi picklist field called “Items Done”. In my Skuid page, I render it as checkboxes. Using CSS I have tried many options to get the .nxcheckboxwrapper to be green when the checkbox is checked and red when it is not, so that the staff can easily see what items they need to complete and it pops out at them more than just having the checkboxes. (Making a game of it, to get all items green instead of red). Listed below are the checkboxes and below that are the various css hacks I have tried, and I have done multiple combinations. None of them worked. Hellp!
Here’s a cute requirement. A client needs a column chart to have the number of opps by salesperson (category) then by stagename (split type) with the stacked opps by stage sorted by highest probability.Here’s the rub, the model must be an aggregate. Too many opps. So … can’t sort by Probability since the field isn’t available to be used in an aggregate model.
How do I set an action to assign a birthdate to a date field?
HelloI have a need to calculate the date of the previous Friday. Since the mod function is not available for Skuid formula fields, I am currently doing this with a Salesforce formula field: (TODAY()) - MOD(TODAY() - DATE(1900,1,12),7)This will return the date of the previous Friday, so if calculated on 5/10/2018 it will return 5/4/2018. Since Salesforce formula fields are not calculated until the record is saved, when displayed on a new record page in skuid this field will be blank until the row on the model is saved. I am trying for a way to display this on a new record page while the new record is still being edited and before it is saved.The mod function basically takes a number, divides it by another number, and returns the remainder. Is there any way to replicate this in a Skuid UI-only formula?Thanks!
I have a sites page with a page parameter on the ID of a contact record. I also have two record types for contacts in this org. For some reason, I am only able to access one of the record types on the sites page and it’s not the one that I need. In the public access settings of my site, I have the right record type settings and field access levels. Is there anything else I can troubleshoot to find out why the site isn’t able to access the correct records?
Hi All, My setup for this looks like so: There is a field on the Account record that is a reference to a custom meeting object. This field is blank by default. I have created a button that creates a new meeting record and fills in some of the fields saves, then sets the this new record id in the blank field on the account. The button logic is intended to go like so: if AccountField == null: create Meeting field update on account open popup else: open popup The popup should reference the newly populated field on the account and display the contents of this new record. So far with my testing the button is successful in creating a new record and putting in in place, and if there is already a record in place is successfully opens the popup and displays the record correctly. The problem I am now running into is in the first portion of the logic. The record is created and placed in the empty account field BUT the popup fails to open up this newly placed record reference. What is happening i
When a rich text component is used in a popup, is appended to the actual text. Page xml: To initiate this request. It appears fine when used on the main page. The XML has the span tag. Please review the Name and Email Address before clicking &#39;Continue&#39; to initiate this request. When I copied this over to the popup, it appends like this: Can you please advise a workaround? Using page title did not work since we have a fair amount of text. We are on 8.15.17 Rockaway.
I am getting an error when selecting the cancel button on tables of Skuid pages embedded in lightning. I am see this no two different orgs both on 11.1.6:[Cannot read property ‘find’ of undefined]b.z.editor.handleCancel()@https://ORGNAMEHERE.lightning.force.com/resource/1521239945000/skuid__CoreComponents/core.js:16:2567…b.eval()@https://ORGNAMEHERE.lightning.force.com/resource/1521239948000/skuid__SkuidJS:23:18314Function.each()@https://ORGNAMEHERE.lightning.force.com/resource/1514499240000/skuid__JQueryJS:13:14965Object.P as cancel@https://ORGNAMEHERE.lightning.force.com/resource/1521239948000/skuid__SkuidJS:23:18275b.cancel()@https://ORGNAMEHERE.lightning.force.com/resource/1521239948000/skuid__SkuidJS:31:28790Proxy.eval()@https://ORGNAMEHERE.lightning.force.com/resource/1521239948000/skuid__SkuidJS:31:25906Proxy.dispatch()@https://ORGNAMEHERE.lightning.force.com/resource/1514499240000/skuid__JQueryJS:14:19404Proxy.q.handle()@https://ORGNAMEHERE.lightning.force.com/resource/15144992
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.