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
Our DEV environment is on 12.1.5 and I’m making a deployment to our UAT environment. I want to ensure the skuid version is the same, however I’m not able to find 12.1.5 anymore - only 12.1.9. The UAT version is currently on 12.1.2.Is there anyway to get UAT upgraded to version 12.1.5?
I want to upgrade to lightning experience with minimal fuss to our large user base that have only recently moved off the classic interface, into a fully customised Skuid interface. The sole reason for switching to lightning would be to grant our users access to the vastly improved reporting UI. We’re using classic, though the users wouldn’t know this as our tab bar at the top of the page is a Skuid master page with object tabs. Currently when a user clicks the “Reports” tab, they’re taken back into the classic interface where they can view and create classic reports, it’s not the most elegant solution, and could definitely be improved, though it does the job. I have a couple of ideas. I’d like to explore (if at all possible) is keeping the top bar which would include a link to the lightning reporting interface…has anyone done this before? This would be the smoothest transition for us. or Change our Skuid page theme to a lightning theme and utilize the lightning search bar capabilities
I am making a Skuid page showing event tickets, hosted on a Salesforce Site. I’d like people to be able to print these tickets in a clean way, with one ticket per printed page. I’m using the Deck component to loop through the tickets, so basically I’d like each Card in the Deck to have the same size as a printed page but only when viewed on desktop and only when being printed. Any ideas for how I can make this formatting happen?Thank you!!
I have just added several new fields to an object and then added to the model and skuid layout but they are not appearing when viewing records. We have professional edition so field security is not the issue. Any suggestions?
I have a condition on a child relationship in my primary model that references a field from another model (filter model). When I change the data in the filter model and re-query the primary model, the SOQL remains unchanged and does not reflect changes to the field in the filter model. I believe this is a bug, I’m currently on 11.2.7. ^ when changing CertName in CertSubQFilter, then re-querying the model, changes are not reflected in resulting SOQL.
Has anyone successfully integrated a PowerBI Dashboard on a SKUID app or any other BI platform for that matter? Is there such a capability available?
We have an object with multiple record types. We are only overriding 1 of the record types with a Skuid page. We use the skuid page assignments to accomplish this. However, after we added the visual force page to override the “Edit” action, the record types that have native salesforce layouts aren’t allowing a double click to edit fields. Users are required to click the “Edit” button the page to put it into edit mode. Is that the expected/known behavior? Visualforce page for “Edit” action override: <apex:page standardController=“Request__c” extensions=“skuid.Redirects” action=“{!redirect}&objecttype=Request__c&actiontype=Edit”> </apex:page> Salesforce Enterprise w/ Classic UI Skuid 12.0.2 And yes, the plan is to move ALL the record types to Skuid pages which would resolve the issue, but we are having to convert record types to skuid pages over time causing the mix of interfaces.
We recently updated from Skuid 11.0.5 to latest. Mostly the update went smooth but we find that our File Upload components no longer work. They have exactly the issue that we posted about four years ago here where - when used through a VisualForce page, the component does not accept the file. For a brief moment you can see the new file name but then it reverts back. When we use the page directly in Salesforce, everything works fine. In that previous post (and others that I’ve found on this issue) the recommendation is to make a copy of the UploadImage Skuid page. We’ve done that, and made sure that the VisualForce page profile with the component has access to the copy and such. Are there other steps that I’m missing here? Are there new steps we’re supposed to take for the File Upload component under new versions of Skuid? In case it’s a clue we also notice that certain scripts being included by vendor.js are not being imported correctly when the page is included in VisualForce pages. S
I have added a filter on a table with the source as snippet, and the snippet is returning the label and values as{label:'** All Years', value''} I want to deactivate a condition after selecting this value, but it is just applying the filter with value empty which is not returning any rows, but if I want to deactivate the condition which will return all the rows is not working.Any suggestions what is wrong here.
I’m running inline javascript on document ready which gets a model as follows:$(function(){ var showTabsModel = skuid.$M(‘ShowTabs’), showTabsRow = showTabsModel.getFirstRow();// do some other things…};I’m getting an error which indicates that showTabsModel returns undefined. Load Model data on page load is checked for ShowTabs, and the only condition on the model is based on userinfo.Any idea why showTabsModel would be coming back undefined?
I have a large Skuid page with several snippets and functions. It works fine when I’m in Classic and/or Preview. But, when I use a Lightning Skuid Page Component I get an error when running a certain snippet. It’s saying pageTitle is not defined. I am using the following line of code. Why doesn’t this work in Lightning and how can I get it to work in Lightning? pageTitle = $(‘#cart’); I have a Page Title component with an id of ‘cart’. I’m using the snippet to handleMessages() after running some functions over a few different models.
I want to toggle a condition from the JS snippet source for the filter.Here’s the example JS which will return options to the filter.var filterItems = ;filterItems.push({ label: ‘Cheese’, value: ‘cheese’ }); filterItems.push({ label: ‘Pizza’, value: ‘pizza’ }); return filterItems;I want to add one more item to thisfilterItems.push({ label: ‘** ALL’, value: ‘’ }); And this will just deactivate a certain condition. I am not able to set the attribute which will deactivate that condition.
I have a checkbox field in a model and all I wanted was to display that field (I have many other fields on the page from the model which seem to work fine).But the slider does not correctly depict what is in the model. I tried to create a button and render the button based on the value of the said field and it won’t work either. If I use skuid.model.getModel(‘MODELNAME’).getFirstRow(); I can see correct value (as stored in salesforce). Any insight would be appreciated. Thanks! SKUID version (Salesforce): 8.15.17This is a SKUID mobile app
Hello! I’ve got a rest endpoint that has provided us with a static bearer token. It is not the typical http auth where it is username+password in base64, nor a token from an authentication service were we can pull it from $Auth.response. It is just a text field. So in every call, we put the header “Authorization : Bearer ” Currently in our prototype, I’ve got this hard coded in the data source “common request headers” section. However, I’m wondering if there is a better way to store this for production where it can be encrypted. We use an Apex proxy, so if I understand correctly, this header won’t flow through the browser and reveal itself, so it should be safe from users (right?). However, it would be exposed to anyone who has the skuid builder or admin permission set. Is there anywhere we can save this field in an encrypted field and merge it in at the data source (not page) layer? Thanks!
I have an object in Salesforce where each record has a start and end date, typically 2-3 weeks apart, as well as a headcount. These events (records) often overlap and I need a way to show how many active individuals there are any given week (sum of active headcounts). Essentially, I want the x axis/category to be a series of dates (maybe each Monday’s date?) and the y axis would be the sum of the headcounts for the events that are active at that time, based on the x axis.I’m thinking I’m out of luck, but any “Outside the box, inside the system” suggestions are appreciated! Thanks!
How do I set a table filter model condition for a particular date range or a blank date field?I’m able to add the conditions independent of one another, can add the grouping logic that works without filter but how do I invoke the grouping logic with a filter to apply 1 OR 2 conditions with toggle filter?
I have created a page where I am using picklist fields as filters. Most of the filters are working but 2 are not. See image. - Select events Channel and Select Sub Channel
Hi With navigation menus that are set to drop down or wrap to a drop down menu on smaller screen sizes, they tend to take a long time to close after selecting an option. We find that we to close the drop down, we have to click off the menu on the back page and then it still takes a couple seconds to close. I have recorded an example of this that I have attached here. Is there any way to have the menu close when one of the options are selected?Thank you!
I’m using a standard Skuid theme in lightning. And some of my users are getting this error. Please note, it’s not happening for me (a system admin). And it seems to only happen intermittently for the end users that experience it. In each case, the follow error is available in the console log.Access to XMLHttpRequest at ‘https://ncontracts–skuid.na65.visual.force.com/resource/skuid__IconsSVG’ (redirected from ‘https://ncontracts–c.na65.visual.force.com/resource/skuid__IconsSVG’) from origin ‘https://ncontracts–c.na65.visual.force.com’ has been blocked by CORS policy: Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
Is there a way to have Skuid refresh an entire page instead of just a model? We have standard SFDC mixed in with Skuid but need the entire page (skuid model + SFDC fields) to refresh.
Getting an error that is preventing page building in a major way on V2 Platform. This happens each time I click on a pop-up. Any idea what is happening?
Anybody know how to look at other skuid pages in a custom component a la page include that lets you select the page ? Thanks!
The include scripts seem to be trying to populate the page region (appending from both child and master) but the result is empty html tag. Steps to reproduce:Barebones Main Page (cleanPI), Master Page (cleanMaster), and Child Page (cleanChild) (below). No models, no query string. Main Page includes Child Page, 2 page titles (have tried including more components/models).API: v1 Skuid 12.1.7Expected:BooHello WorldActual:Hello WorldThanks in advance for the help! ________________________________________________________________cleanPI (Main Page) <u alt="" name="" rel="" target="" title="" type="" value=""><b alt="" name="" rel="" target="" title="" type="" value="">cleanMaster (Master Page)</b></u><b alt="" name="" rel="" target="" title="" type="" value=""></b><br alt="" name="" rel="" target="" title="" type="" value="" /><pre alt="" name="" rel="" target="" title="" type="" value=""><skuidpage unsavedchangeswarning="yes" personalizati
We’ve implemented quick text that is used for cases, but would also like to use it in other areas of Salesforce. Is there a way to implement quick text with Skuid?Alternatively, maybe we can open a quick action from a Skuid page?
Hello, I am trying to apply a Page Override in Lighting. I put together the aura mark up as shown below, saved it as a new Lightning Component. When I go into the Object Manager to change the setting for the “View” page, the options for “Lightning Component” override are NONE. I am thinking I am missing something totally obvious? Using the latest Skuid version 12.1.7, the Skuid Page is v1. Thanks in advance! <aura:component implements=“force:hasRecordId,flexipage:availableForRecordHome” access=“global”> <skuid:page page=“ProgramDetailsNew2019” id=“{!v.recordId}”/> </aura:component>
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.