Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
The Iframe is in JotForm and their directions to pass a variable are: https://www.jotform.com/help/83-adding-parameters-in-lightbox-and-feedback-formsThe site where this is implemented is: https://full-dorothy.cs50.force.com/Member/On the site, if you click on “Add a New Member” in upper left corner you will see the modal and the “Password_Input__c” variable 123456 is in modal.How do I get the variable into the Iframe?
Hello, Let there be object TempObj__c which has Reference field. image__c, to skuid__image__c. Let there be table, where TempObj__c is the source, and the reference field be a field on the table. If a file is uploaded (drag and drop, or via modal) for one record the UI will show as if that file was uploaded for all records. Though, that’s only a visual bug. Since other fields (image__c.Id, image__c.Name) are updated correctly and are shown correctly in the table. Nonetheless, it’s confusing, if I want to upload an ‘image’ for other records I have to through the process of “deleting” the image for those records, and i’m unable to download the image. Furthermore, I’m unable to use Image Component to show that image. Thank you, Lukas
I am being told by jotform I need some java script like this: The code in the iframe looks like this: <iframe id=“JotFormIFrame-202028584502045” title=“New Member” iframeParameters: { 'typeA53': variable1 }, onload=“window.parent.scrollTo(0,0)” allowtransparency=“true” allowfullscreen=“true” allow=“geolocation; microphone; camera” src="<a href="https://form.jotform.com/202028584502045?typeA53=variable1"">https://form.jotform.com/202028584502045?typeA53=variable1"</a> frameborder=“0” style=" min-width: 100%; height:539px; border:none;" scrolling=“no” Would the Java script be in: Generic JS Generic JS Snippet Custom Formula Or is there an easier way to convert the {{Password_Input__c}} to variable1
The theme on v1 allowed borders between fields and the value was indented. This looks quite different in v2. Does anyone have any suggestions? See attachment. Thank you.
I am using API v2, on Skuid 12.4. Is it possible to create a new reference record if the one searched for does not exists?
Hello, I am trying to set the number fields in my tables to 0 decimal places, and it seems there should be an easy declarative way to do so because there is a field for it in the UI, but the only option in the field is “Use Field Metadata”, but we do not want to update the field in Salesforce, just in this Skuid Page. Seems like a possible bug? Thanks, Sarah
In V2, how do I center an image?
I have created a salesforce connected app and using that to call in Authentication provider. When I select Salesforce as provider type getting below as default: Authorize End point url: https://.my.salesforce.com/services/oauth2/authorize Token Endpoint url: https://.my.salesforce.com/services/oauth2/token After replacing My domain with salesforce domain if i try to call the datasource then getting error as “Unable to authenticate to data source, login has been cancelled”. Please help me with how to provide appropriate Authorize and token end point urls
I want to use an apex class as Authentication provide to configure in datasource. please provide any documentation or steps.
As per subject.
Do page assignments take time to actually take effect? I’m adding new ones and they seem to still be directing to the classic Salesforce page instead of the SKUID page. eg. (this was just set up) This appears to be set up like all the others but it is not redirecting to the SKUID page (goes to salesforce classic) If these do take time to take effect, is there any way to speed up that process?
I am attempting to connect a REST model to ClickSend. The API is expecting a body that looks like this: { "messages": [ { "to": "+61411111111", "from": "+6142222222", "body": "This is a message" } ] } I am using the batch insert option and the nested JSON array option, which the tooltips indicate should create an what I’m looking for. Here’s the setup: However, the body of the actual request being sent looks like this: { “messages”: { “sk-3PMGf3-5”: { “to”: “+61411111111”, “from”: “+6142222222”, “body”: “This is a test.”, “custom_string”: “123456” } } } It looks like an object with the temp skuid row Id as the key rather than an array. Help?
As per above.
Hi All, Not sure if this is possible, but wanted to ask. I’m trying to calculate the sum of averages across multiple records that have multiple variables in common. Example: I have a set of 6 Salesforce records and each has a numerical value for field A. I want to create a table that first takes the average of field A of records with the same value for picklist fields B, C and D, and then sums the calculated average(s) based on having the same value for picklist fields B and C. Example: model object = Race Results, fields for each record in quotes below. RR Record 1: “Event” = City “Location” = Park “Class”= Special “Place” = 50 RR Record 2: “Event” = City “Location” = Park “Class”= Special “Place” = 100 RR Record 3: “Event” = City “Location” = Park “Class”= Extra “Place” = 200 RR Record 4: “Event” = City “Location” = Park “Class”= Extra “Place” = 300 RR Record 5: “Event” = Village “Location” = Upper “Class”= Special “Place” = 25 RR Record 6: “Event” = Village “Location” = Upper “Class
😦 I have written a snippet to call the managed package apex class. But I’m facing the above exception. Please help me.
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}
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.