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
We have an existing object in our app called Feedback__c. When we upgraded from Brooklyn to Spark, all the models built on the Feedback__c object seem to be attempting to query skuid__Feedback__c (even though the the soql includes “FROM Feedback__c”). Any ideas on how to fix this? 1. An error occurred while attempting to perform the following SOQL query: SELECT Demonstrated_Fighting_Spirit__c,Demonstrated_Relevance__c,Enhancements__c,Interaction__c,Interaction__r.Name,Notes__c,Positives__c,Interaction__r.Primary_Staff__c,Interaction__r.Primary_Staff__r.Name,Interaction__r.Patient_Case__c,Interaction__r.Patient_Case__r.Name,Additional_Feedback__c,Demonstrated_Accountability__c,Id FROM Feedback__c WHERE (Interaction__c = ‘a0X1K00000BqAf3UAF’)AND(Additional_Feedback__c != true) ORDER BY Id LIMIT 2 Error:No such column ‘Demonstrated_Fighting_Spirit__c’ on entity ‘skuid__Feedback__c’. If you are attempting to use a custom field, be sure to append the ‘__c’ after the custom field name. Pleas
Hi, Users are getting the following error when trying to login to their skuidsite. {"statusCode":400,"error":"Bad Request","message":"Invalid cookie value"} Is the platform down right now?
HI team,We are opening a skuid page through popup when user clicks on table row action and this page has a on-load snippet. we are facing issue when user click on another records’s row action then this popup is opening but on-load snippet execute 2 times and after closing the popup if again i open any other record then on-load snippet execute 3 times . i am assuming skuid is storing the records opened in popup and execute on-load snippet multiple time. please help me to resolve this issue if suppose i am opening 100th records from the table’s row action then the on-load snippet will execute 100 times and this will increase processing time.ThanksAkanksha
In the list view, on the row action, Pop up is opening. And in the popup, Skuid page is opening. When we first time open pop up at first time, then onload function is executing at one time. Then we close the popup and the again open the popup through row action, then onload is executing 2 times. Can anyone help me for this. Why onload is executing more than one time?Thanks,Geeta Garg
Is there a “MODEL_LOOKUP” like function usable in Javascript snippets? I’m looking to, in javascript, be able to get a specific row from a model based on a key (eg. the Salesforce ID of the row).I’m finding myself needing to go through loops to construct Maps in Javascript in order to have this functionality, but if there is some way I can pull a row from a model based on a key (like the MODEL_LOOKUP function but in Javascript) I wouldn’t need to do that.Is there a similar function to MODEL_LOOKUP usable in Javascript that will return the row (or values from the row) I’m looking for based on a key? I’m not finding a function like this in the model methods documentation.Thanks!
Hi All, I have a reference field(lookup) named SKU. When user clicks on the lookup field it displays table component letting user to select one row at once .It has having several columns.Values in some of the columns are populated based on filters and in few columns values are taken up from model. I have added a field favorite(checkbox) which will let user to mark a particular row as favorite after checking that checkbox.I have added the field favorite(checkbox) in model as well as in table component .I am unable to check or uncheck the checkbox .It’s not editable. As shown above Favorite is not editable. How can I add an editable field on this table. Thanks
Usually we are filtering records where the owner id is the sf user … we have several use cases where we need to show records owned by the salesforce user as well as records able to be viewed by public groups they are a member of. Any ideas on how to state this in the model conditions?
Hi,I am rebuilding a spreadsheet into Skuid, and the users like to enter “N/A” into date and currency fields. We want to properly evaluate the fields when they are entered (like sum or filter by quarter, etc…) but ignore them when they are N/A.Obviously we could have a proxy field that is text or UI only and then copy values into type field or an N/A checkbox, but I’m hoping to not triplicate all the fields with this pattern. Has anyone done something clever related to this that might lead down a different path than having a field for the UI and a field for the DB logic?
I just completed a webinar on rolling out Salesforce Lightning. Lightning does not support JavaScript buttons and, upon completing a Readiness Report, I discovered that we’ll have a lot of work to do on that front! What I’m wondering is, how if at all does Lightning’s lack of JavaScript support affect JavaScript snippets used in Skuid? We’re currently on the latest version of V2.
We updated from version 10 to version 12 and we have a field that gets populated via an Apex class with some html. We display the field contents in a template field with the following code: {{#urlDecode}}{{{Tracking_Info__c}}}{{/urlDecode}} In Version 10 the are honored and the " " text is not displayed. In version 12 the are not honored and the " " are displayed. Should I be using something other than {{#urlDecode}}{{/urlDecode}} to honor the html?
Is there a logical test to determine if the page is running in Lightning or Classic Salesforce? I want to do a Row Action URL redirect…but the URL should be different for Lightning than for Classic depending on which environment the page is currently running in.
Hello, Not sure if possible but trying to aggregate a table and concatenate a text field as per this example Does anyone know of a way this can be done? The part I’m having a hard time with is the Concatenation of the Description field as shown below Thx!
I updated from version 10 to version 12 and I get the following error “Model “XXX” is processed server-side and has a condition that depends on Model “XXX”, which is processed client-side. Some conditions were set to inactive.” I don’t see any inactive condition on the model stated. Is there somewhere else I should be looking?
Hi all… I need to create a model with a field that lists (dyamically) all of the values in a field on a different model … I can surface the multiple values in a template etc or deck but is there any simple way I havent thought of to write them dynamically into a single field on another model?
Hi everyone, I am in the middle of migrating the company’s Salesforce org to the Lightning Experience UI. All our Skuid pages have been tested and are working fine in both interfaces, but I noticed the SF header is not being displayed in any of the pages when I’m in LEX: Classic: LEX: Upon going over the documentation, I found this piece of information:“You cannot disable the Lightning header within Lightning Experience, so keep this in mind when designing Skuid pages, especially when using headers within those pages.”… but this seems to be the opposite of what I am seeing. Am I missing something obvious? Skuid page version: all pages are v1. Skuid app version: Spark (12.2.9).
I am trying to display an output message(which is a variable output from Apex Class) as an error on my SKUID page. The Apex Code(with the required message highlighted) is: @InvocableMethod(label=‘UpdateTaskStatus’) public static List UpdateTaskStatus(List lstInput){ List lstOutPuts = new List(); Output objOutput = new Output(); Set UnderWrittingIds = new Set(); List taskList = new List(); List<Stipulation__c> stipList = new List<Stipulation__c>(); Opportunity opp = new Opportunity(); for(input objI:lstInput){ UnderWrittingIds.add(objI.strUnderWrittingId); } Underwriting_File__c objUWFile = [select Id,Project_Status__c,Opportunity__c,Account_Name__c,M0_Ready_for_Review_Date_Time__c, M0_Ready_for_Review_Age__c,M1_Ready_for_Review_Date_Time__c,M1_Ready_for_Review_Age__c, (select id,Name,Description__c,Status__c,Completed_Date_Time__c,Suppress_Completed_Email_Alert__c from Stipulations__r where Status__c != ‘Completed’ and (Stipulation_Data__r.Name = ‘APR’ or Stipulation_Da
Is there a way to make the File Upload component look like a standard button in Lightning? When I preview my Skuid page, it looks like the other buttons. But when I create a Lightning Component and display my Skuid page, it looks like this: I’ve tried to use CSS to change the styling, but it doesn’t seem to affect the File Upload component when I view it in the context of a Lightning App.
We are utilizing Skuid to create an interface for vendor information that is in Salesforce, but the information that renders on the Skuid page does not always match what is in Salesforce. We have had this issue for almost 2 years without being able to get it resolved.I am currently updating to what I hope is the latest version of Skuid for Salesforce in hopes that that will help.The integration was set up by a developer who no longer works at our company and we do not have an internal developer to support this anymore.
Essentially through salesforce and skuid I want to create a yearly view event calendar like the first example here: https://developers.google.com/chart/interactive/docs/gallery/calendar
Hi Team,I need to hide the table filter based on the some condition just like Profile Name.How to hide the table filter based on the particular condition?Thanks,Geeta Garg
I’m rendering fields with javascript, and in some cases (depending on user input elsewhere), rendering them as required. In Broolyn, this worked: field.required = true; field.element.addClass(‘required’);In Spark, the fields appear to be required (adding the class works), and the field metadata includes required=true. But the model does not trigger a warning if it is saved with the required fields empty.Marking fields as required in skuid directly (not via the custom js field renderer) works as expected.
Hi Team, Is there any way to not remember the previous selected visible row in the list view? For example : in skuid page, visible row is selected as 25. And on the page user select the 50 as picklist and log out from the system. And again user logged in then 25 should be selected. But skuid remember the previous selection and 50 is selected. Thanks, Geeta Garg
Tab Bar Width set to 225. Tab contents section does not seem to adjust.
In ~40 days Salesforce is forcing a critical update that force-enables lightning whether you like it or not. On our page we’re using Salesforce Classic overrides to override the homepage as well as all additional managed and unmanaged pages. With lightning forced on this no longer works, the homepage directs you to the Lightning home page and the only way I can find to get back is to go into the App’s SKUID homepage, where it will display with the lightning header bar on top of the SKUID page. Additionally, for managed pages it seems like in Lightning you can’t override them with a Salesforce Classic page – how would I go about overriding these? I’ve looked into this article but I’m not finding anything helpful here:https://docs.skuid.com/latest/en/tutorials/salesforce/homepage-dashboard.htmlWhat I need to do is completely override the Salesforce lightning UI similarly to how we had the Classic UI completely overridden, not just have a component inside of its interface.
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.