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 - none of our pages are loading. Here’s the error I get: An error occurred while attempting to load the “skuidcore” Component Pack. There may be an issue with the name or location of your Component Pack manifest files. Error: Unable to retrieve content of file I just updated to Millau (11.2.27). Help! I’m supposed to be on maternity leave but no one can get any work done without skuid.
I have a Deck showing various Opportunities.I have under this deck a Table that uses the Opportunity ID of the current deck context row to show Activities related to that Opportunity (WhatID on Activity).I want to be able to create a new Activity and use the OpportunityID (current deck context) as the WhatID when creating the new Activity. Is this possible? I don’t see how to go about finding the current deck card’s fields (the Id field specifically) to refer to when creating a new Activity row.Thanks!
We have update skuid from version 10 to 12.2.8 in salesforce and it showed error" Theme could not be found. Test Defaulting to Classic." but I am working on the classic theme only and if I change the skuid theme then also it showing the same error.
When trying to access the backend of all my pages in production I get the following issue. I am also getting the following error “There was an error trying to load the Chatter Feed for this record: java.net.SocketException: Connection reset.” Has anyone else experienced this issue?
Is it possible to access AWS private buckets via Skuid on Salesforce? Currently our AWS buckets are public but want to change them to private.Has anyone successfully done this and is there any documentation if it is possible?Thank you.
I need js snippet which will be triggered in stead of single click in deck component. i tried following snippet but no luck. i changed the id to StickPostDeck, try { if (skuid.$(‘#StickPostDeck’)) { skuid.$(‘#StickPostDeck’).dblclick(function(){ console.log(‘double clicked’); }); } } catch (error) { }
A SKUID page that I am using currently has been throwing “Apex Heap Size too Large” repeatedly. I made some temporary fixes to avoid the issue: deleted a few unwanted models and fields. Also checked the “Max # of records (Limit)” for the models, and set the values as per my requirement. The “Query on Page Load” option is checked only for required models. But, the heap size is still large enough to throw the error if number of data records increase slightly. I wished to know if there was a way to avoid the issue permanently. For instance, I have a few models which are used only in conditions of other models. As shown in the screenshot, the “BoxFieldsModel” is queried only to be used as conditions in another model(2nd screenshot). Is there any better way to perform this task, other than querying a separate model? Currently I am trying to search for other options to avoid the heap size error. Any input for the same will be helpful. Thanks, Sejal.
HelloI have a model on the Account object that is trying to pull in two fields that lookup to the Contact object. On one sanbox, when the model is queried it pulls in the data just fine with no errors. In another sandbox, where the pages and permissions are identical, I am getting errors on the model saying that these two fields do not exist.I verified that the fields do exist and that the profile, record type, etc all have access to them. This also a sudden issue. This morning when I ran through the page there no issue, but now there is. I can’t explain what changed there or why, or why it only happend in one sandbox and not the other.Anyone have any idea why this would happen? Why would skuid say that a field sdoesn’t exist when it very clearly does exist?Thanks!
Our invoices are created as visual force pages that we print via a Skuid button. A new requirement has come up to print all invoices for a client as individual pdf’s in a batch. We currently use conga to achieve this but want to move away from it. I have done some research and attempted a couple of times to build a blob controller but never was successful. Has anyone ever done anything like this within Skuid? Here is some reference info: https://salesforce.stackexchange.com/questions/255399/batch-print-visual-force-in-a-pdf
I have been editing a skuid page today and all was going well until I got this error on preview: There was a problem initializing a component of type skuid__labelInput: Invalid XML: I searched the community and google and am not finding anything with the term “skuid__labelInput”I also reviewed the XML editor and it does not have the normal red Error message in the upper right to indicate that the XML is invalid. There are also no lines in the XML with the Red square with the X at the beginning of the line to indicate where the issue is. Does anyone have any suggestions on how to troubleshoot the issue? (Other than restoring an earlier version where it wasn’t occurring.)
I occasionally have to troubleshoot and/or fix an issue with my skuid pages by restoring a previous version.Is there a way to preview a revision without restoring the version? It is very time consuming and confusing trying to find the right version to restore to, especially if you save frequently, or are trying to find the break point of an issue.) I am currently on the latest version of spark version 12.2.8.
Hey everyone,We’re using a Tabset inside a Wizard. The issue is as follows:Let’s say we have 3 steps in the wizard. Step 2 contains a Tabset with the Tabs “TAB1” and “TAB2”.As you know you can go back to revisit a wizard step. Every time we revisit the second wizard step the tab label is concatenated. So it works like this:First visit, the tab names are:TAB1 and TAB2Second visit:TAB1TAB1 and TAB2TAB2Third visit:TAB1TAB1TAB1 and TAB2TAB2TAB2and so on…here’s a simple test page:<skuid__page unsavedchangeswarning=“yes” personalizationmode=“server” showsidebar=“true” showheader=“true”><skuid__wizard uniqueid=“sk-3MC_-1192”><skuid__tabSet uniqueid=“sk-3MD0-1649”><skuid__tabPanel name=“TabName”></skuid__tabPanel></skuid__tabSet></skuid__wizard></skuid__page> Any ideas for a JS script or something to fix this?Thanks
Hello, I’m trying to use the new DATE_ADD function that is listed in the 12.2.8 Spark Notes. I just upgraded our sf production environment to this update. I don’t see the function listed in the formula functions, so I’m not sure it’s even there. But, I also tried to use it manually and nothing is happening. I’m using API v1. Here’s excerpt from Release Notes and then my code. CORE-2365New formula functions: DATE_ADD and DATE_DIFFWorking with dates can be a complicated process, so we’ve added two new functions to simplify things:DATE_ADD is used to take a source date, add a specified amount of time to it, and return a new date. For example, you could add fifteen minutes, two weeks, five months, and so on.DATE_ADD( {{MyDate}}, 1, WEEK )You can even subtract time from a date by using a negative integer with the formula.DATE_DIFF is used to calculate the difference between two dates. You can find out how many minutes, weeks, months, and so on between two dates—whether a specific date or t
Pretty sure this error just came in, it for sure wasn’t an issue in 12.1.7 and was reported after upgrading to 12.2.8 If you have two field editors under another field editor, and you have the same display logic set to show them after a certain other field is filled out, when they display they both display in the same space, as opposed to on top of each other like they’re supposed to. Here’s what it looks like when section “Assistant Phone” and “Contact Description” both render when Assistant Name is not blank, right after filling out Assistant Name: And here’s what it’s supposed to look like, and what it does look like after saving and refreshing: here’s my sample page xml: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="Contact" limit="1" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Contact"> <fields> <field id="RecordTypeId"/> <field id="Assist
I was searching for the code to redirect to a page within a Salesforce org. I couldn’t find it so here it is. Note “newOrderId.Id” is whatever the variable is for the ID to your new page. Hope this helps someone. //Redirect to New URL var URL = '../../' + newOrderId.Id; var win = window.open(URL, '_blank');```
My requirement is to sort the records of a table on the SKUID page in descending order, based on a UI only field(Age field, as shown in the screenshot): I have tried adding the UI only field ID in the “Fields to order records by” on the Model level, which throws an error: The error: I have also tried adding an Event for sorting the model, when the Skuid page is rendered, as shown in the screenshots: This works when the page is rendered, but in my case the page is loaded twice to activate the “SLS I” and “SLS II” buttons on the page, as shown. Due to this, the records are unsorted again when the page finally loads. Screenshot 1: When “M0Stip” tab is clicked on the Skuid Page, it returns the table with records sorted based on Age field (the actual requirement): !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20191016-5360-1rv5708-Screenshot 54 inline.png “Image: https://d2r1vs3d9006ap.cloudfront.net/s3\_images/1810665/RackMultipart20191016-5360-1rv5708-Screenshot\_\_5
I’m trying to develop on a Skuid Platform Trial site, but it logs me out almost immediately after logging in. I’ve tried both Chrome and Firefox. When I try to save changes to a page is says my session has expired. This seems to happen intermediately. Sometimes I can work in it for a hour without it happening, but then other times I can’t work in it at all because it constantly logs me out.Not sure how to go about fixing this? Any ideas?
I’m running into an issue on my V2 page where Reference fields specifically do not display in components. This includes Form, Header and Text components. I’ve resolved the issue in most cases by using a different field but this resolution is not available in all cases, and sometimes I really do want the field to link to another field. What can I do to get Reference fields to properly show up?
I’m having difficulty with button actions in V2. In this case I’ll focus on the “Go to URL” action. I have buttons in my layout that use the action on click, “Go to URL”. They run of inserted fields combined with an existing URL. Here’s an example: http://sungage.my.salesforce.com/apex/laccallscript?k={{Key_LAC__c}}When I click the button in Preview Mode, the URL seems to work as evidenced by the text in the lower left-hand corner of the screen. However, the page does not seem to react. When I right click the button and select “Copy link address” and paste the text into a new tab, the page opens without issue, which means it’s correctly calling the LAC Key inserted via a field above. My Skuid V1 page uses the same URL in the same manner and it works fine. Is anyone else experiencing this issue?
I have a Table Component (T1) with a drawer that displays another table T2) of related records.I am trying to only display the drawer’s table (T2) when there are actually related records (so some drawers will show the table (T2), and others will not). I tried adding a rendering condition using the Table’s (T2) Model Property of Has data rows, and also tried # of rows in model, but ther table (T2) still rendered.in the drawer. The Source Model Tooltip for the render conditions indicated that it will use the rows in context unless there are no rows in context in which case it uses the first row in the model, which explains why it isn’t working using my logic, but I am unclear as to an alternative approach to achieving my objective.Any suggestions would be much appreciated.I am using API V2.
We have created a Trial Template on Salesforce and the Skuid pages are not getting unpacked automatically. Our users are seeing error as : You’ve been INKED! (Something went wrong) We were unable to find a Skuid Page named UX_Target_Audiences. 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. I have changed the sharing setting of Page and Page assignment to Public read yet no Luck. Has anyone faced this issue ? How did you overcame it ?
When trying to Clone an Opportunity with Products we are coming across the following error message: “field integrity exception: PricebookEntryId, unknown (versions 3.0 and higher must specify pricebook entry id, others must specify product id)” Clone via Salesforce is successful. Have already added the pricebookEntryID in the model as “PricebookEntry.Id” and productid as “PricebookEntry.Product2Id”.I guess noting wrong with products and Pricebook of the Opportunity as it is successful in Salesforce.
Hi All, Is there a way to inject a line break for related lists as columns? What worked on V1 isn’t working for V2.
I have a UI only model that allows a user to specify a date and then run a separate model query on a Salesforce Account.As part of my query on Account I’m comparing a Date field on the Account to the UI Only Date field: AccountDate__c >= (Field From Another Model)(UIOnlyDateField)Except that this comparison seems to not work at all. I’ve set the condition to always on, and even set it to abort the model’s query if no row in source model, but for some reason the Account query just ignores the condition completely and returns all accounts regardless of the Date comparison.Why is this happening? I’m running circles around both the UI editor and the XML to try and figure out what’s going on and all I can see is that this is a bug; but I’ve done date comparisons before with UI only models and Salesforce dates and those seem to work, why here is this not working?Any ideas? Thanks!
Date pickers and lookups are taking - 10 to 15 seconds to render in API1, Skuid 11.2.6. Across the team, across all pages. Help please
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.