Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
This is driving me crazy! All I’m trying to create a condition on a model where the condition checks whether the selected field is less than another field on the same row. I’m using Row Merge Syntax Here’s a screenshot of the condition Here’s the error i receive when I try to preview the page SELECT BOM_Qty_Req__c,BOMLineItem__r.BOM_Part__r.In_Stock__c,SalesOrderLineItem__r.Sales_Order__c,SalesOrderLineItem__r.Sales_Order__r.Name,SalesOrderLineItem__r.Sales_Order__r.Customer_PO_No__c,BOMLineItem__r.BOM_Part__c,BOMLineItem__r.BOM_Part__r.Name,BOMLineItem__c,BOMLineItem__r.Name,Id FROM Sales_Order_Line_Item_BOM__c WHERE (SalesOrderLineItem__r.In_Stock__c < )AND(BOMLineItem__r.BOM_Part__r.Part_Type__c in (‘Aluminum Raw Material’,‘Metalphoto Raw Material’,‘Stainless Steel Raw Material’)) ORDER BY Id LIMIT 501 Error:unexpected token: ‘{’ Why can’t I use row merge syntax on this condition? I would really appreciate the help! P.S. I received 3 errors trying to post this question… first a 4
Hello! I am trying to create a tab in Lightning which loads a Skuid page without the Salesforce header. The Skuid app seems to be doing this by opening the Launcher lightning component tab which redirects to https://–skuid.visualforce.com/apex/PageList. How is Skuid able to achieve this? Please share! Thank you, Kristen
I’m launching a Salesforce flow with a Skuid button, and I’d like to be able to pass all records in a model into a Record Collection variable. Is there a way to do this? I can see how to pass a single record using a merge variable, but not sure whether there is merge syntax to pass all records in a model.
I have a Table component. When I change another page from the pagination section, left side of the table does not render properly. But when I mouse hover in the misaligned area, it aligns properly. When page is changed: I think it is related to the design system, because it does not happen when I use another design system. The problem is, I cannot find the element which causes this in the design system. I thought it was related to Drawer configuration, but it did not fix.
Wondering if there are any recommendations for debugging Skuid on pages used on Community Portals? I am not able to use the Console Skuid model debugging but would be great if I could. What do others do? Thanks, ~harry
I am using the Salesforce Data source action: “Send Email” to send notifications to users based on actions they take in Skuid. However, the emails only seem to work for certain users. When this action is triggered by some users, the email is never delivered (all tests have used the same recipient address, so the issue doesn’t seem to be an invalid email). The strange thing is that the network request for the action always returns with a success status. Is there a user permission that needs to be activated for the sending user in order for the emails to be delivered successfully? Or some other setting I’m missing?
How do I make a border appear around each form in my Skuid page? Thank you, Tracey
I am sure it is a symptom of age but for the life of me in Charts I cannot find where we can turn on or off the Date Granularity dropdown that sometimes appears on our charts? It seems to render there sometimes but not other times? Can it be switched on?
I’m creating a case creation form. We have several record types for cases. When create a new case with the skuid form, the picklists that have values that are dependent on the record type are not loading correctly. No matter which record type I select, all picklist values are visible in the picklist. I’ve tried clearing my cache and re-starting my browser. We’re on Skuid version 11.2.30. I’m uncertain if this is intended behavior – so any feedback on that is appreciated.
Hello! My organization is new to Skuid. I have a use case where my users need to be able to print a record; when they previously tried to do so using standard print function in the browser, it didn’t show checkmarks plus was way too long. So, I used a Skuid page to create a form that shows all the record data. Now, I need to put a button on the record page, something like “Print View”, that will open up the Skuid page in a different browser window so the user can print the form. How do I accomplish that? Thank you!
I want to create a form that basically looks the same in read mode as it looks in edit mode. I want my form to behave the same way a table behaves, with the static header and field look the same in both modes. The only exception between modes is the pencil for editing. Any suggestions?
Is it possible to call a Lightning component from a Skuid button? I know it’s not possible to embed a Lightning component in the Skuid page, but now I’m second guessing an assumption I made about calling the component from a Skuid button in the Skuid page.
Hi All, We’ve recently migrated from Skuid version 11.1.18 to Chicago Update 1 (14.3.2.0) and currently having trouble with toggling the elements to “edit” and “readOnly” modes on button click. Upon clicking Edit On/Off button, we’re invoking a javascript enabling/disabling fields sitting in a particular element row. This is working fine for version 11.1.18. For Chicago Update 1 (14.3.2.0) - When debugging this javascript through console, it seems row element modes are getting toggled between “edit” and “readOnly” but the fields within those rows are not getting toggled. here’s a sample code below - f = skuid.component.getById(<Id of div row>).element; if(f!==undefined && f.mode !==undefined){ if(f.mode !== 'edit'){ f.mode = 'edit'; f.list.render({doNotCache:true}); } } Any help/suggestions on this issue would be much appreciated. Thanks !
I’m using the Design System Studio (DSS) and have my field font color set to White. However, a phone number that is appearing as a link (click to dial) is showing up as dark text. Using the DSS, how do I specify the font color for the link value be a lighter color? I’m still on Boston, just in case the answer is different in the Chicago release.
Defect/Issue Description: Model that contains Data with accented characters doesn’t export properly Environment: API Version: v2 Release: Boston Release version: 13.0.17 Platform: Salesforce Brief Summary of the Defect/Issue: If the data in the model contains characters with accents, when the user exports that data the characters get turned into weird symbols. From what I read only, I believe the export needs to be prepended with ‘\uFEFF’, but I do not have the ability to do that using functions provided by skuid. Action Performed: Create a new row for a UI Model Set any field in the model to have an accented characters, e.g. ‘upe, upę and upē’ Export the data via model or the table. Expected Result: The accented characters to be in the export instead of weird symbols. Actual Result: Accented characters are replaced by symbols Additional Resources: <skuid__page unsavedchangeswarning="yes" personalizationmode="server"> <models> <model id="UIModel" limit="20" query="tru
Defect/Issue Description: Trying to emptyData (via JS or action) of a UI model that is linked to a table produces: ‘RangeError: Maximum call stack size exceeded’. Also, the table has to be on not the first page. Environment: API Version: v2 Release: Boston Release version: 13.0.17 Platform: Salesforce Action Performed: Create UI Model (with 1 field) Create a table where the UI Model is the source Show 10 rows of data per page Add 11 rows of data to the model Go to 2nd page of the table emptyData() on the model via JS, or via an action. Expected Result: The data should be removed from the model and the table should display no data. Actual Result ‘RangeError: Maximum call stack size exceeded’ produced in console. Additional Resources: <skuid__page unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="UIModel" limit="20" query="true" datasource="Ui-Only" createrowifnonefound="false"> <fields> &
I have a few responsive grids where the data is showing up out side the grid. I have multiple fields on a row, so the row is overflowing instead of dynamically wrapping under the other fields. Any idea why the responsive grid is not being responsive?
Is there a way to redirect a user to a different page after a certain amount of time they are inactive? For example, if a user goes to skuid page and they are inactive for 30 minutes, is it possible to redirect the page to a different one?
I’m trying to set up a new Data Source and Authentication Provider in SKUID for the purposes of setting up a public access method of accessing Salesforce data. I followed this guide: https://docs.skuid.com/v11.2.0/en/data/salesforce/ I’ve set it up and everything seems to work on the live working page I’m using (records are retrieved / updated as needed), but the problem I’m having is in the SKUID editor I’m getting an error: “Error retrieving metadata for Model(s) associated with Data Source ‘MY_DATA_SOURCE’. Please check Models’ properties to ensure they are set correctly. Unable to authenticate to Salesforce. Metadata could not be retrieved. Authentication Failed” It’s difficult to tell because changes in Salesforce don’t seem to necessarily sync live with SKUID to prevent this error from happening in the editor, but it seems like if I set the user that configured the App in Salesforce that makes this connection (the Salesforce user that this connection runs through) to a System Adm
We want to set up a skuid page that our clients can access from our website to view their open cases from salesforce. This would require that the client login to the page so their information is protected and will only show their cases. We don’t use salesforce communities and we don’t intend to. Is there a way to accomplish this? It would essentially be a skuid public page that is password protected. I thought about creating custom fields on the contact record to store username (ie. email) and password and then setting up a skuid page with a contact model that will query contacts that match the username/password and then query cases based on this contact. The issue is that when a user refreshes the page, they need to log back in again.
Use Case: We want Price Book to be selected based on a certain field value on Oppty. Example: if Oppty Field A value = “1” then Price Book 1 if Oppty Field A value = “2” then price book 2 should be selected. Just wondering how I can achieve this?
Is it possible to create a paperport type viewer in Skuid where I can preview documents in the folder?
Hey! For a couple of months now, all our users have been reporting an issue where often times some page includes are not loading on page load. I have a very complex page with a dozen or so page includes. For about 6 months it ran perfectly, but a couple of months ago something changed. I think around that time there was a Salesforce upgrade and I updated my Skuid version. If the user keeps refreshing the screen, eventually all the page includes load as expected within 3 or 4 refreshes. Anyone else seeing this behavior?
I have two individual user whose Skuid is not rendering on the laptop device. They have been able to login with separate devices. On the devices in question, they’ve tried using chrome (standard profile, guest and incognito) and well as Explorer without success. Have you come across any device settings that could prevent Skuid from rendering?
We currently have a page that uses JavaScript to take the values returned by a multi-select picklist from Salesforce and split them up into an array so that they can be used to populate a regular picklist where the user only selects one item at a time. I do not believe that this will work in v2 (and doesn’t seem to be after migration of the page). This question (linked to below) mentions not being able to use JS to manipulate the DOM which I think this JS would be doing (http://community.skuid.com/discussion/8015661/snippet-from-v1-not-working-in-v2#latest) The reason we have this code is that in Salesforce we have a multi-select picklist that assigns users to multiple regions, where applicable. However, we want them to be able to select just one region at a time to filter a summary page we built in Skuid. Can I use javascript to do this? If not, what other options do I have? Here’s the relevant JS code: var params = arguments[0], $ = skuid.$; var field = arguments[0]; var value = argu
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.