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
Is or will there be a calendar component in Spark 2.0 pages?
We have a Skuid page built that searches for Salesforce accounts and if one is found that is flagged as “Inactive Prospect”, the user can change the account owner to themselves. Our users are running into an error message when they attempt to do this though. Specifically, the error message says “insufficient access rights on object id”. As the Salesforce administrator I do not get this error and can change the owner via the Skuid page as expected. However, when I’m logged in as a user (or they attempt) the error pops up. There isn’t any error if the account owner is changed via the standard Salesforce record page. Everything works correctly that way, so I don’t think it’s a Salesforce access issue. With that said, I can’t figure out what it could be on the Skuid side that is prompting the error. This functionality used to work for our users, but then one day they started receiving this error. We are still on Salesforce Classic, so it’s not like the move to Lightning caused thi
I’m looking to build some logic that saves related items to the database all in the same save action sequence, and rolls back inserts if anything went wrong.To this end, I’d like to use the SKUID Temporary IDs to relate items together via APEX code, so I can create and relate these things all together with a trigger on insert by querying for the SKUID Temporary ID, and then relate the related objects based on their Salesforce IDs after finding them via the SKUID IDs.In order for this to work, the SKUID Temporary IDs that get generated would need to be unique not just to the local instance of the page, but also to the entire database. Is this the case? Are SKUID Temporary IDs unique to all other SKUID Temporary IDs ever created, or are they only unique to the local instance of the page? If they are unique only to the local instance of the page, is there any way I could use them to create an ID that is unique to the entire database?----Further details of proposed design for context:I’m i
If I upgrade to Spark V2 12.1.5 do I also get the fixes for Millau v1 11.2.24?
Had the opportunity to watch “Nautilus Notes 19.1 - June 4, 2019” and loved the format. One of the suggestions was to use sliding panels instead of popups. A couple years ago I tried using sliding panels instead of popups, but when multiple sliding panels were opened on top of each other it was not possible to close one at a time. When the top sliding panel was closed, it closed all open sliding panels. Popups can be closed one at a time.Has this been fixed?
Hi For some reason, for the date picker’s month/year menu, the month and year are showing as white on white, thus essentially invisible. Is there a way to fix this?
Could anyone point me in the direction of how I might set the width of a division in a responsive grid if the value of a field in a model equals a certain value? Say the model is Contact and if the Last Name field of row 0 equals “Thanos” then I want the responsive grid division to equal 0. I Know I can have the division set to “fit to content” and then hide all content, but I have a use case where I need to the division to be flexible width when there is content, but have width = 0 if there is no content rendered in the grid division. Thanks!
Hi Everyone, We have a requirement to start tracking what pages are being visited by the various users. To that end we created a simple object with two fields. PageName__c and URI__c. I wanted to create a static resource that we can just add to the page when we want to audit, and this could capture the URI. So we build the code, and it does insert a record, but the fields are not getting populated with any data and I am at a loss. The user has rights since we can open the Audit table and edit the fields, so I don’t believe we have a security issue. Any insights are greatly appreciated! ((function(skuid) { skuid.$(document.body).one(‘pageload’,function(){ //set initial variables var currentLocation = window.location.href, curModel; //check if the model already exists and so do not create it again if(skuid.model.getModel(‘LOISAuditLog’)==‘undefined’|| skuid.model.getModel(‘LOISAuditLog’)==null) { console.log(“Creating LOISAuditLog Model”); curModel = new skuid.model.Model(); curMod
Is it possible to paste data into a table? Specifically - I’d like to be able to paste rows of Excel data into a table of Salesforce data. (Of course I’ll need to be careful that columns in Excel match columns in Skuid, etc.) Alternatively - is there a way to add an “import” button to a table?
We are creating community users using Batch Class. We have a checkbox “Auto Assign Perm Sets on Activation” unchecked in SKUID and we are assigning Permission Set through “After Insert” trigger on user object. And all these were running fine till 17th June 2019. Since 18th June 2019, we are getting following error ERROR MESSAGE: skuid.User: execution of AfterInsert caused by: System.AsyncException: Future method cannot be called from a future or batch method: skuid.UserUtils.assignLicensesAsync(String) Trigger.skuid.User: line 62, column 1 Trigger.skuid.User: line 159, column 1 And above error is occurring only on production. Where as the skuid version and Salesforce release version are same on dev org and production org.Any help is appreciated.
Hi everyone!I have received a request from my Sales Reps that the would like to have available the drag/drop feature of the calendar when using a mobile device. Is this possible? currently it works on a desktop/laptop by using the mouse, but the go to device for a Sales Rep is an iPhone or iPad.Thanks!
I’m most likely not understanding this problem correctly, so I may be barking up the wrong tree, but I’m going to do my best to explain the problem.Short VersionHow can I poll a Salesforce record until the asynchronous method has completed? I believe I have to use a asynchronous method because I’m calling out to a web service from a trigger and I can only do that with the @future method. Long VersionI have a Skuid page that is using Stripe Checkout API. I’m using the server-side method by using a custom object called Transaction__c. When the transaction record status equals ‘Process Payment’ it triggers the Apex Class to do a HTTP call to Stripe to start processing the payment. I have to use a “@future method” to perform the callout since salesforce won’t let me perform a callout from a trigger without making it asynchronous. How can I make the Skuid page wait and keep checking the Salesforce record until it has gone to the correct Status?I hope this makes sense. I’m in very unfamili
I’ve build a page that I’m using as a page include to match our component drive framework. That page needs a transparent background so whatever page it’s being included in will drive the background color. However, when I load the page I’m noticing the element the ‘nx-page’ class is assigning a background color of white. I don’t see this configurable anywhere in spark. Is there any way to suppress that or change it to transparent so the page include I’m using can leverage the background of the hosting page?
I am working in 12.1.5 and using filters to pre-populate values in records doesn’t appear to work when loading the page through an include. This is the setup where you create a model, setup your filters for the fields you want to default in and then when you add a row, these fields are populated from the filter settings. It looks like this is impacting V2 pages loaded in page includes. Loading the same page directly rather than through an include works as expected.I can get around this by moving the field updates to the action framework, but this isn’t ideal.
After upgrading to 12.1.5, the several styling components in forms aren’t lining up to DSS definitions defined in the variant selected for the form in the page definition. This includes checkboxes, field labels, placeholder text and other elements. Changing the DSS also doesn’t update into the page. It’s picking these up from the default rather than the variant we’ve created in the DSS. Updating the default does cascade into the page for these disconnected elements. Other elements like the section header do update the page when I update the DSS, so it’s inconsistent. Also, the button to Update Design Systems is missing:
Is there any way to increase the table export limit? Users are attempting to export all records, but are getting hit with this limitation.
I am updating a field from a row action in a different model, save the record and re-query the model but the changes don’t show. The only way to show the changes within the Skuid view is to reload the entire page. I know the changes save because they show properly in the SF view.I tested in my sandbox and can’t replicate the issue so it is something specific to my production org.Has anyone else had this issue?
I posted this same question but didn’t get a response. You can find original here: https://community.skuid.com/t/change-the-value-shown-in-multi-select-list-when-4-or-more-… FROM THE RESPONSE: The Multi-select Picklist renderer always switches to show “N items selected” when you have 4 or more items selected. This is not currently configurable through the Page Composer, but we are planning to make this configurable declaratively by the Q1 2017 Skuid release. It was mentioned that functionality was going to be added to Skuid. Was this deployed? I can’t find any feature that allows me to change the number in ‘selected’. Below is an example of the problem we are running into. We want to be able to change the parameter that requires 4 selections to 2 selections.
Trying to integrate Hubspot with Skuid Native but having issues pulling the following array into fields.{ “results”: [ 25054251, 25129831, 25284327, 25370947, 25371816, 25402825, 25515091, 25974488, 27511859, 28085871 ], “hasMore”: true, “offset”: 28085871 }``` There is no FieldId for me to store the data to the results into individual rows. Has anyone had success in pulling these types of arrays into Skuid?
Hi,Wondering if there is a way on a UI-Only Field formula to Round to the nearest thousand?Thx
Hey Skuid Product team, You know I have much love for all the great work you do. However, I want to emphatically shine light on a bug that is 3 years overdue. https://community.skuid.com/t/no-error-on-blank-required-field-with-add-none-optionIf a field is marked as required in the Page Composer (not on SFDC object level), the save action should not execute. This is proving extremely difficult and costly to build workarounds for…e.g. JS snippets to validate if fields on page have values, custom error handling branch actions, etc.In the most recent Nautilus Notes, you said you wanted feedback…even the hard stuff, so here it is:Required fields should throw a required error message upon save. Please patch.Thanks,Conlan
I have a lookup field to a custom geography object for US States and territories. In Spark (V2), I am displaying this as a picklist and the height of the list is ridiculously long and scrolls off the view. Is there a way in either the page or the DSS to control the height of the picklist menu and provide scrolling when the list either hits a certain number of records or exceeds a defined height?
So, despite there not being any data rows in the data, I think Skuid is inserting zero value records to put into Highcharts? Is this known? I’m asking if this is expected or abnormal - willing to put in the effort to troubleshoot here, just wondering if this is a known issue.
Zendesk has a feature where you can have a chat icon hover over the lower right corner of the screen. If the user clicks it, they open a chat/message window. If someone is available to chat, they will get put in a chat queue and eventually chat with the rep. If a rep is not available, they can still type their question/concern in the chat and are notified that a representative will reply within 24 hours.Has anyone added anything like this to a Skuid page?
So, pretty simple. I have a chart and it’s got data labels. According to the colors of the chart, I want the data label text to display in white. The trouble is a bit of text in skuidtheme.css that I can’t seem to be able to do anything about..sk-chart-standard .highcharts-data-labels tspan { color: #000; fill: #000;}There doesn’t seem to be anything I can do to affect this - it appears in the new, default themes. Setting a data label color on charts in the theme does not affect the rendering of the text. Using the Highcharts API to specify data label color does not affect the rendering of the text.Why is this style element everpresent? Is this just something in my environment?Thanks,David
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.