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
HI Guys, Happy New year! This issue reminds me when i first started on skuid years ago…but this time after doing this 100’s of times, I cannot figure out for the life of me what is the issue. I have this page named: Submission_to_lender_select_docs and when I preview it all works well. As soon as I try to use it as a page include, no data gets loaded, I can see in console the Id is passed properly in parameter of page include… Here’s console when I access page as preview: Now here’s as a page include As you can see id is properly passed to page include. But that page keep acting as if no parameter ID is received… Here’s page include: ( i tried passing the model’s row Id as well, same issue as using parameter ID) Here’s how model on this page include is set up… Any ideas would be helpful Thank you
Hello, I’ve built a page in v2 with a List component and dropped a field from a child relationships tab into the component. I’ve marked “allow HTML”, but when I use html markup in the template field it doesn’t render it. It just shows the html as plain text. The allow HTML seems to work with regular fields, but I can’t get it to work with child relationships. Is there a workaround for this?
Hi This is my first time posting a question. I’m relatively new to Skuid, especially to snippets. I’m sure this question has been asked and answered many times, but I haven’t found a definitive answer with an example. Hoping for a little clarification. I have in-line snippets which make use of custom Javascript functions. My first attempt at this had a function defined within the snippet itself. The snippet would start with the usual: var params = arguments[0], $ = skuid.$; In the body of my snippet I’d refer to the function: var x = myFunction(this); then at the end of the snippet I’d define the function itself: function myFunction(parameter1) { //code to be executed } This seems to work, but it makes sense for me to centralize such functions outside of the snippet. I then moved the function into a js file which I add as a Static Salesforce Reference (named ‘MyResource’ for this example). Here’s where I’m a little unclear. I changed the first line of the js file to: skuid.snippet.regi
This discussion was created from comments split from: Uncaught+TypeError:+Cannot+read+property+‘execute’+of+undefined.
Hi All, Is it possible to use an aggregated model in a Table Drawer that uses another aggregate model for Context? The scenario is that we have opportunities that can be raised against multiple Site accounts so we want to display a summary of the opportunity product quantities and total prices by Site account. It’s easy enough to product the tables but we want to be able to display the result using a drawer so that you see a list of Site Accounts and then if you expend a Site Account drawer it will show you the summarised opportunity data for that Site. I have attached an image of the closest I can get but if I set the context of the drawer so that it matches on the ‘Site account idr id’ it doesn’t display any results. Many thanks, Rob
Hello! We created a Lightning Component for the Skuid Page that we want to display and added it to a Quick Action on Opportunity. We are having trouble getting the Lightning Component to open as a new tab in the same Lightning browser window (both for console and standard navigation) (it’s way too cramped when it opens in the standard quick action window and we need to be able to toggle back and forth to the Opportunity while viewing it). We added a controller file to the component to initialize a method where we can utilize the built in navigation functionality for Lightning, but we are having trouble figuring out what we are calling on our side to get the Skuid Page to open in a new Lightning tab. Any tips would be greatly appreciated, we will also need to pass the Opportunity ID to it so that the data the dashboard displays is specific to the Opportunity. Thanks, Sarah
I recently discovered the “Badge” component available for styling in the Design System Studio, but I have not found where badges are available for use in the composer. What component are they associated with? I’d love to leverage these in my pages!
Need some help in configuring REST API with json body, I am able to configure GET method with query params, but I couldn’t configure POST method with snippet as custom JSON body -
We’re working with a non-profit that wants to enable volunteers to select shifts for their organization. Does anyone have recommendations on how we could accomplish that with Skuid? Would be using NPSP backend where all the shifts are sourced from.
HI Guys, Would any of you know of a way to accomplish the following , preferably without JS? I have 3 Decks based on 3 different models/objects, on which user is able to select certain records and by clicking on deck for each record they want, it updates on each selected a lookup field and a date field. Until now all good Now I’m trying to find a way to concatenate & list all those records Selected & Saved in a SF note field. Each object uses different fields. Example: Object/model 1, we selected 3 Records, and want thsis text to appear {{Doc_Name__c}} - {{Doc_Date__c}} for each record Object 2, we selected 2 Records, and want this text to appear: {{Category__c}} - {{Date__c}} Object 3 we selected 1 Record, and want thsi text to appear: {{Test_1__c}} - {{Date2__c}} So my final note field should look like this: (with merged data ofc) {{Doc_Name__c}} - {{Doc_Date__c}} {{Doc_Name__c}} - {{Doc_Date__c}} {{Doc_Name__c}} - {{Doc_Date__c}} {{Category__c}} - {{Date__c}} {{Category__c}
Formula and Function Reference — Skuid v13.0.10 Documentation I’m attempting to use the default custom formula function, but it’s unclear how to even after reading the documentation. What is the Namespace? The snippet name? The Skuid page?
Hi, I wanted to report this to have it looked into. I spent hours on this scratching my head and baffled as to why I was not getting the right result with a dependent picklist. SKUID Version 12.2.21, and Salesforce is used. Page in V2 I have a model pointed at an object with a picklist field #1 and a dependent picklist field #2 (dependent on #1). In #1, I override the field metadata because I want to show 3 out of the 4 options. I have some model actions that save the model when #1 is updated, so that picklist #2 is showing the appropriate options when the user is making that selection. The issue I began experiencing was that I wasn’t getting the right picklist for 1 of the 3 options. What I found to be the issue is that I needed to order the picklist items in Salesforce the same way that it is ordered in the metadata override. This is suggesting to me that it is not really looking at the dependency, but instead using the order it is in Salesforce and showing whatever is dependent to o
I am adding Opportunities to a model within my page. As I go to look for more Opportunities to load, I want to exclude showing those already in my model so they cannot be added twice. To do something similar for other pages I have had to create an object in Salesforce to store this temporary information. As I only want to load the primary object after all Opportunities have been selected. Is there a way to do this completely within the skuid page without a temp object in Salesforce?
I’m looking to run batch APEX that parses my SKUID page XML for all of my SKUID pages and replaces certain object/variable names with other object/variable names (mass updating the skuid pages to convert from using one object to another object) To do this I use APEX to query on each skuid__Page__c object and combine each skuid__Page__c object’s Layout fields into a single string for analysis / updating: skuid__Layout__c skuid__Layout2__c skuid__Layout3__c skuid__Layout4__c skuid__Layout5__c (note: SKUID stores the XML for their pages split between these 5 layout fields, each are 131072 character Long Text fields, and if the XML extends beyond 131071 characters it continues on to the next field to be stored … 655355 appears to be the limit for the number of characters in SKUID page XML) When done updating my single unified string, I split the string up into 131071 character substrings and fill the Layout-Layout5 fields with them. This seems to work great, except if one of these layout f
Hi, I am currently using SKUID v2 12.2.21. I am having an issue in the design system page when creating a new design system. If I create using one of the standard DS (ink, lightning, skuid app) it lets me create it without a problem. If I try to create one using a custom DS I have created, I get an error on screen but no real context of what the problem is. The console logs are a bit more helpful, but not by much. They say “error - Not Found”. I believe this is implying that it can’t find the static resource with which to clone? Not sure. I thought maybe the underscore might be the issue, but I tested by trying to clone a custom DS without an underscore and still get the same error.
Hi All, Are you guys able to send the Toast Message event from skuid to lightning? Im unable to do it I have followed exactly the steps based on the documentation but not able to
Hi All, I’m using DSS to mimic the Lightning table behaviour and can’t see a way in the UI to adjust the table behaviour so that the highlighted row background is one colour (gray) but the actual highlighted cell is a different colour (white). Can this be done in the UI or does it need to be CSS. Advice welcome. Thanks, Rob
As the title says when I try to create a model using component factory it creates an error instead: TypeError: Cannot read property ‘core’ of undefined I am able to bypass the error if I also create a chart with Skuid Composer, but that’s a hack and not ideal. Use case: I have a function that dynamically creates models, then it creates charts and tables for the model. XML: <skuid__page unsavedchangeswarning=“yes” personalizationmode=“server” showsidebar=“true” showheader=“true”> <fields> <field id="Name"/> <field id="Category__r.Name"/> </fields> <conditions/> <actions/> <groupby method="simple"/> <skuid__buttonSet uniqueid=“sk-3SG–5262”> <groups> <skuid__buttonGroup uniqueId="sk-3SG--5260"> <buttons> <skuid__button label="Create Chart" uniqueId="sk-3SG--5261"> <actions> <action type="custom" snippet="newSnippet"/&
Hi all Perhaps my misunderstanding but i was under the impression that the FREE level of Skuid licensing had no expiry (given the use of the word free rather than trial)? But 1 month after install our license has expired and i no longer have access to Skuid. Is this an error? Or does FREE actually only mean free for 1 month?
Hi, I noticed in v2 that the deck components come with a scrollbar. Is there any way to remove it?
I have UI field that accepts a characters called {{TempCell}}. As I type into {{TempCell}} I have a second UI Field {{PhoneLengthPW}} with the calculation of LEN({{TempCell}}). As I type into the {{TempCell}} field I expected the count to increase. Why not?
Thank you Justen for you description. I am still getting an error which I think I am using the wrong “guest user” I am getting the same results: You’ve been INKED! (Something went wrong) We were unable to find a Skuid Page named M1_Person. The Page is either inaccessible or does not exist. If you believe you should be able to view this Skuid Page, ask your System Administrator to check the Sharing Model for the Page object to ensure that you have access to this Skuid Page. How do I determine the correct guest user or other ideas?
How can one embed a javascript form onto a modal pop-up? In v1, template component can be leveraged to enable this, but I don’t see a workaround for v2. Thank you community
I have a skuid page that allows editing contact information. When saving changed contact information if a duplicate contact is found, Salesforce outputs a red banner at the top of the page with the message “Use one of these records?” Is it possible to override & display a different worded message? An inspect of the Contact model via the console details the following.
Hi all Recently discovered this brilliant app and loving it. Having an issue with flows however. I have Salesforce Flow that requires a record id to run, this flow is on our payable object but i want to trigger it from the payable line (child) model. In SF this is easy as you just pass the parents id to the flow and it looks like it should be easy in Skuid. when i choose the flow in the action it gives me a box for the input variable from the flow called recordId. HOWEVER, no matter what i type in this box and press save when i return to the box its blank again. I had assumed i could just pass {{$Payable.Id}} to this flow via this box, but its defeating me. Any help? is this component disfunctional or am i missing something?
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.