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
There is an implementation restriction on OpenActivities. When you query this relationship, security evaluation is implemented for users who don’t have administrator permissions, and you must use a specific sort order: ActivityDate ASC, LastModifiedDate DESC. can any one please help on this.
After updating to 11.1.6 I noticed something quirky about one of my cases Rich Area Fields. In my Queue page I noticed it would appear to load indefinitely and when I went to the actual detail page, an error popup shows whenever clicked. Below I’ve included a screenshot of the field it’s self
Hi, I have a table with a multi-select option filter, there is a chart linked to the table which dynamically updates when the filter is activated. I have been asked if we can display the values selected in the multi-select option filter in a chart title. Has anyone tried doing this? Thanks Damien
Hi,Currently, we have faced difficulties when trying to pass a list of params with Invocable Methods of Apex Class via Skuid Page.We have a Custom Object A, and when inserting a record, we need to set many values for the record of Custom Object A. Till now, we couldn’t find any way to transmit multiple values. Please note that inserting a record in apex code is not avoidable, it is a must for our case because it is required on user’s side. Please help giving advice to us to achieve this idea. Thank you.
Can y’all at skuid please produce a deep dive on page caching?? I have lots of questions about how things work that aren’t covered in the documentation. Our scenario:We have a data-analysis heavy app built with skuid. As we’re rolling out, on-boarding new clients to our multi-tenant environment, things are getting SLOW. When I’ve completely turned on page caching in the past, things got funky, data didn’t show up, or wrong data showed up. So, I’m started trying to incorporate page caching bit by bit, turn it on a page at a time. That doesn’t seem to be possible when there’s a master page. Caching seems to work like a theme, whatever is setup on the master page trickles down. This is obvious on child pages where you can’t select caching, but I can turn on page caching on a non-child page, only it doesn’t seem to change anything when the page loads within the context of the master page. Does caching options on a master page affect all pages loaded within that context, even non-child page
Now that I am storing documents as the new salesforce files I thought the name might be AttachedContentDocument? But I cannot query the object. Where do I find the object in the Skuid models?
I’m having trouble with a page include inside of a wizard step. I’ve embedded a video of the problem below.Skuid on Salesforce version: 11.1.6 in a sandbox.On step 3 of a wizard component, I have a page include. On navigation to step 3 ( from a mass action button), I see a loading frame on the page include section. After a brief period of time, the page reloads step 2. I’m experiencing this in other sandboxes and Skuid versions, but this sandbox was refreshed/installed today with no data to reduce any variables.
I would like to be able to see a list of documents associated with an object with the “Preview” capability. Like this but with a Skuid UI. I have set an the object page layout like this: I have the file upload set up like this: Do I have the file upload set correctly? 2) How do create a table in skuid with the “PPreview” a document like in the SF table in the first image? When I look at the table with the uploaded file using the Skuid Upload I get the second image which has not “Preview” option. If I press the "“upload Files” button on the SF table upload a file I get “Preview”
I have an aggregate model which I am using to display data on a Geochart, The aggregate model has a country code and a state code and I have set the Geochart to reference these fields accordingly. However, when I try and display data for Taiwan - with a country code and state code of CN and HK respectively as per ISO 3166 - the Geochart displays the data as just belonging to China i.e. China is coloured blue whilst Taiwan remains uncoloured. What am I doing wrong?
Is it possible to add a Custom Salesforce Button from an installed package to a skuid page? The button is an Execute JavaScript
Good afternoon!I’m on the latest version of Skuid 11.1.6 on Salesforce. There is a standard object called AccountContactRelation that acts as junction from accounts to multiple contacts. This is enabled in our org and working in Classic/Lightning.I’m updating our Account page with Skuid for the first time and found that if I put this section in a tab and query it each time that tab is clicked–it’s only accurate the first time. If another contact gets added… say via pop-up (ideally) or by navigating elsewhere a hard page refresh is required for this object to update even though the new record exists.I have a bunch of other custom objects with similar functionality and no problem so I’m starting to wonder if this is related to Skuid, perhaps?Thank you,Dan
After upgrading to 11.1.6, we have the following error on all of our skuid pages in the builder. Tracing this problem, this field on the Pages object isn’t accessible to our profiles. The Skuid Page builder permission set DOES grant access to this field, but Skuid page builder does not seem to be respecting that permission set for that field. I was able to grant access to my admin users on the Pages object itself by making Last Modified Date Check read only on the object. But the permission set should do this, and it isn’t working.
Opportunity object detail view override is giving a error for partner community usersAll other overrides are working as expected for all users. Account detail override, Lead detail override, Contact detail override all working as expected.System Administrator all Skuid pages working as expected.the error is ONLY occurring for partner community user and ONLY when navigating to an Oppty detail page."Error: Error occurred while loading a Visualforce page. "
Hi! A lil help please! I was updating our production environment to 11.1.4. It had been in 10. Went through progression but there was no link to 11.1.1 or 11.1.3 Installed 11.1.4 but am now getting the Attempt to de-reference a null object error… as you can see below it isn’t getting to load the skuid page, same is true if I try to preview the skuid page The url seems well formed. Have tried same in Sandbox works fine. Thanks in advance! AP
As of this morning, all users (except myself Admin) are getting error messages when trying to open most pages. The error msg is attached w screenshot. I updgraded Miliau 11.1.4 from 11.1.1 yesterday. Any help would be appreciated. Thanks
I am trying to dynamically control the table columns in a WhatId reference field popup. With the help from this post I was able to limit my WhatId field to the Account, Campaign, and Opportunity objects, but I need to go one step further and dynamically display table columns in the popup based on the selected object. I was able to “sort of” dynamically render the table columns with the below script, but it requires a user to enter text in the field, click on a selection and then press the lookup icon. If a users tries to switch the object and press the lookup icon either it will error out based on the prior selection or it won’t switch. Any help is appreciated! params = arguments[0], model = params.model, row = params.row, $ = skuid.$; var whatId = row.WhatId; var refString = String(whatId); var refLength = refString.substring(0, 3); switch ( refLength) { case "001": field.options.returnFields = [ {id: 'Id', showInSearchDialog: f
I have a scenario in which on hitting the new button a form open up, there is a lookup field in the form and i need to autopopulate the form field on look up selection. Please share the views
if we are calling a snippet from another snippet like var SaveQLIModels = skuid.snippet.getSnippet('SaveQLIModels');<br>SaveQLIModels (); Can we make the current snippet to wait until SaveQLIModels snippet execution is completed.I tried using $.when(SaveQLIModels()).done(function(){<br>**Remaining logic**<br>}) but it not waiting until snippet SaveQLIModels() execution complete. Let me know what I am missing her.Thanks in advance for the help.
We are migrating our org from a fully Skuidified Salesforce to Lightning + Skuid. I’ve run into an problem, and hoping there is a fix. We have a Lightning Detail page, let’s say it is the Account page. I have a related list of Contacts, using the SF out of the box related list. I have decided to override the “Edit” button on the Contact object with a skuid page so I can conditionally show or control fields or other logic when my users edit. My steps: Create a Skuid Page “EditContact_LEX” that has a contact model taking the id from the URL parameter. My “Save” button saves my contact model. After save, I redirect the user back to to the Account detail page (Action framework: navigate to url: /{{Account.Id}} Build a lightning component to call the Skuid Page, markup like this: <aura:component implements=“lightning:actionOverride,force:hasRecordId” access=“global”> <skuid:page page=“EditContact_LEX” id=“{!v.recordId}”/> </aura:component> On my Contact object s
Hi- I have a table in a top sliding panel. When the table column adjustment pop-up is triggered by user it actually shows up under the sliding component effectively hiding the ability to make mods or consequently close either the pop-up or panel. I know the header overlap issue was just fixed but I haven’t seen this mentioned before.
When I am loading a page inside lightening. any compulsory field in the field editor causes the next field to move forward and it distorts the entire field editors placements of fields - Screenshot as below.
Hi,In LX mode and Skuid, we are using the Invocable and Run Data Source Action to call the apex class. This apex class will call to an outside server (using HttpRequest and Post ) to sync data between the external data from another server and Salesforce. But, it didn’t sync successfully. However, when we tried to call directly from the apex class, not on Skuid page, we can sync successfully. We couldn’t find out the root cause why on Skuid page, we have not managed to sync data successfully.Please help to advise us for this problem. Thank you.
I’m using a row action to populate a temporary model when a row is ‘selected’. I set up the row action to execute a javascript snippet that should select(highlight) a row if none are already selected when it’s chosenunselect(unhighlight) a row if it’s chosen a second timeor unselect(unhighlight) the previous row and select(highlight) the new row if a different one is chosenI had this working in a different place in one of our other skuid pages, but for the current page it seems to only behave if you are hitting the row action on one of the even numbered rows…Here is the javascriptAssociatedModel.abandonAllRows();$.each(params.item.list.renderedItems, function(i, listItem){ if(listItem.row.Id === contextRowId){ if(alreadyHighlighted === false){ listItem.element.addClass(‘highlighted-row’); console.log(‘alreadyHighlighted was false’); AssociatedModel.adoptRows([listItem.row]); UIModel.updateRow(UIModel.getFirstRow(), {
In the midst of removing and changing some permissions recently I seem to have lost the edit page button that is typically on the right middle part of the page.Could someone please explain the components that control whether or not the “edit page” button is visible or not.Thanks,
Hi All,I have a skuid page that utilizes a Run Multiple Actions button used to save model changes on a number of models. The page contains a contact model. There is some background functionality that requires all the contacts to have an email entered before saving. I would like to find a way to have a popup appear if any of the contacts are missing an email address where the user could use the popup to fill in the email before proceeding to save. Basically I need a button with the following logic: If all emails are not blank: SaveIf any email is blank: Open PopupI have tried playing with section merge syntax and UI Formulas to use on a logic branch formula action kind of like this (with no success):IF({{#Model.data}}ISBLANK( {{Email}} ){{/Model.data}},True,False)Does anyone know how this is achievable?
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.