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
Hi, We recently installed skuid into a new dev org on our environment hub to version 11.2.24, and installed our salesforce managed package which has pages packaged into a module as well as other pages in a page pack without a module. When we attempted to unpackage the module or the page pack, the message “Refreshing pages in selected static resources” appears, but then nothing continues past that and no pages are unpacked, no matter how long we wait.Any ideas what could be wrong? We’ve had this issue in the past with an earlier version and only a skuid update fixed this, but not sure if it is the same problem or not.Thank you
I know this is an ugly one… I’m trying to upgrade an organization that is still on 7.36.10. What does the upgrade path even look like for an org this out of date? I tried jumping straight to 12.1.7 in a sandbox and got the following error. I imagine I probably need to upgrade in phases? 1. You can't remove design attributes 'type,id,parameters,useURLParameters' when the component implements a Lightning Page interface. page: You can't remove design attributes 'type,id,parameters,useURLParameters' when the component implements a Lightning Page interface. Thanks!
In our current new Salesforce 19 instance partner dev org, we install 11.2.8 skuid. However, whatever the skuid pages we import in we are not able to see in page builder. The error message is below when we open the page: Attempt to de-reference a null object An unexpected error has occurred. Your solution provider has been notified. (skuid) The org id is 00D2v000001urNh. Can you guys urgently have a look at this? Thanks very much.
Data model condition is always true if the condition for a field equals to a field from another model where this other model is empty. Is there a way to make this false since the field it is comparing to does not exist.
We are having an issue where incomplete files are being uploaded to Salesforce. The upload appears to be successful in Skuid, but when we try to open the PDF, it fails to open. Upon further inspection of the file, it appears 1/3 of the file content is missing. We are on Skuid version 11.0.2
HI Guys, maybe a stupid question, but could not find this on the community I have an Aggregate Model (named Payment_agg)based on Object Named: Payment, grouped by Calendar Month and Calendar Year of the same Date Field named: Funding__r.Funding_date__c Now I want to Show a Popup (detail table) based on Regular Object (named: Payment_detail) with a table showing the detail of all records from the same Object (payment) for each calendar Month/Year I tried all Context parameters I could think of in the 'Detail table" but nothing works Any ideas?
Not sure what I’m doing wrong here, I’m getting a an error 400 bad request when passing a single Attachment Id to to this class: global class AttachmentsDelete { @InvocableMethod(label='Delete Attachments') global static void deleteAttachment(List<Attachment> attachIds) { List <Attachment> attachmentsToDelete = [SELECT Id FROM Attachment WHERE Id IN :attachIds]; delete attachmentsToDelete; } } it seems like it might be skuid’s using the apex custom action with a wrong URL?
We want to set the table Visible Rows on the basis of condition. For example , If Account Picklist Value is A then Related table of Contact will show 20 records at the first time. Other wise it will not show 10 records at the first time. We want to show all the records but on the basis of picklist value , we want to control the table Visible Rows property.
I have a hunch about this. We have a very large Skuid app overlaying our Opportunity object, and in my efforts to speed up load time, I found I could bring it down by 50% if I got rid of all the “undefined” fields in my Models. An example of one of these fields is, on a Model looking at the Opportunity, a field “Opportunity_Data__r.Id”, which is reaching over to grab the Id from the Opportunity_Data__r object, instead of the Opportunity object. These fields often show up as “undefined” on the list of fields in my Model. Here’s an example image: So my question is, do fields like this slow down the load speed of the page they are on, and is it best practice to avoid the temptation of using them? If so, I’m working on rebuilding my Models and some of the fields keep ending up in there. Is this because my Render conditions look at multiple Models in a set?
I have a model with a condition based on another model. It’s supposed to deactivate when the source model has no rows, but it’s not deactivating. I’m sure there are no rows in the source model. Why would it not be deactivating?
I want some of the values in multipicklist to be active and some inactive .But its not happening .I have attached the code .Every value is being inactive. var matchedStates = getMatch(tempSplit, applicableStatesSplit); var unMatchedStates = getDiff(tempSplit, applicableStatesSplit); for(i = 0; i < (matchedStates.length) ; i++) { console.log('MatchedStates ’ +matchedStates.length); //.log('unMatchedStates ’ +unMatchedStates.length); codes.push({ active: true, defaultValue: false, label : matchedStates[i], value : matchedStates[i] }); } for(i = 0; i < (unMatchedStates.length) ; i++) { //console.log('MatchedStates ’ +unMatchedStates.length); console.log('unMatchedStates ’ +unMatchedStates.length); codes.push({ active: false, defaultValue: false, label : unMatchedStates[i], value : unMatchedStates[i] }); } console.log(codes); field.element.append( skuid.ui.renderers.MULTIPICKLIST.
Is it possible to change the button label on basic on some checkbox. We have a requirement where if checkbox is checked then we need to change button label within Button Set.
Is it possible to change the order of tabs in a tabset on basic on some checkbox. We have a requirement where if checkbox is checked then we need to exchange position of tab 2 and 3 with each other. JavaScript snippet for reorder tabs within tabset
We have just upgraded to latest Spark 12.1.7 from 12.0.4 and found that our client-side table searches (in v2 pages) returns no results no matter what you type in the search box. This used to work fine in the older version we had. Have managed to reproduce the issue in the page below, seems to be a bug when you have model conditions with condition grouping logic combined with a client-side table search on the model. If you look at the underlying model’s SOQL the client side search is incorrectly (and unnecessarily?) altering the SOQL making it invalid (if you remove the model’s condition grouping logic it works): SELECT RecordTypeId,Name,Id FROM Account WHERE (CreatedDate != null)AND(2) ORDER BY Id LIMIT 21We make use of the client-side searches in a few places so we've lost functionality with this upgrade. FYI, we have a similar issue in an older v1 page but haven’t been able to replicate it and switched it to server-side search which was an acceptable work-around. Haven’t been able t
So … what have you all experienced in Skuid component load time in a Lightning page? I’ve seen super simple pages load in 2sh seconds after the lightning components have loaded. I’ve seen complex pages single page Skuid apps load in about a minute and half that in classic.From what I could tell, Skuid pages/components resources load in sequence in Lightning versus in parallel in classic.What is everyone’s experience of Skuid load time in Lightning?I’m really to get a thorough understanding of Skuid’s load time in Lightning and how that compares to other 3rd party components.Lastly, a few questions for Skuid:Do you foresee a time when Skuid’s load time in Lightning is on par with the load time in Classic? Do I understand this correctly in that resources are loaded in sequence in Lightning versus in parallel in classic? If so, is this can or will change? Will it be possible that 3rd party components will load at the same time as SF’s components?
Allow for the NOT operator in addition to AND and OR in Model Condition logic. This would help greatly simplify some conditions where for example you need NOT(1 and 2).
Hi, Is it possible to keep all the accordion sections/panels open on page load on opening up the page for the first time? If it is not configurable, can we write a javascript to do the same?
Hi,We have quite a few pages that we have built in the past that we no longer use. We don’t want to delete these pages in case we use them or features we have built on them in the future. It would be useful and a lot easier to be able to ‘archive’ them so they don’t show on the general page list every day, but are still there for us to go back to in the future.Is there anyway to do this at the moment?Thanks!
I’m trying to sort the data in the below chart. I have already sorted the data in the model. Please help me.
Where do I find the app templates like Survey App and HR App?
I’ve noticed that all our Skuid users have “Salesforce Setup” as an option within the Salesforce User Menu.When I click into the profile assigned to any Skuid user, click “System Permissions” I see that “View Setup and Configuration” is set to false. The only permission set assigned to the user is “Skuid Page Viewer” and that too has “View Setup and Configuration” set to false.Are there any other permissions I need to check, or is this a bug?Note that when “Salesforce Setup” is clicked, I am taken back into classic and receive “Insufficient Privileges” message.
We are switching to Lightning and there are several areas in Lightning that offer the user to create a new record (from a related list, or another new record page, etc) that opens a pop-up that they can then fill in the fields required to create a new record without being redirected to a different page.I know we can do a visualforce override, but that redirects them to a new page. Is there a way to override the Lightning Pop-up page with a Skuid page?I tried creating a Lightning Page, but I can’t assign the Lightning Page to the New Action on the object. Is this possible? and if so, what’s the best way to go about doing this.Thank you,Sam
How to show and hide the column of the table on the basis of filter condition? For example : Filter is the multi select , according to the user selection , show and hide the column.We tried to use the render condition on the column, but it is just considering the first record. and show and hide the column on the basis of first record value. So it is not working in my scenarios.
In V2, can the spinning “loading” gif be changed to our own gif?
Can a data source be configured to connect to a .csv file?
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.