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 there any way to update the theme on a multi-select filter? We have a specific look and feel we’re looking for and we have a filter set with picklists and multi select lists. The picklist picks up the theme text color for the “None Selected” Option Text but the theme doesn’t seem to be applying to the multi-select filter…
I have a table of Opportunities. In Salesforce, I created a formula field that returns a link to the View All Notes & Attachments page. In Salesforce this works fine, but when I add that field to my table in Skuid - I get an error page that says the site is down for maintenance and to try back again. It’s been about 2 years. How do I create a link to the View All Notes & Attachments page for the opportunity in a specific row directly from my table? Help… me… please… [insert crying emoji here]
We are migrating to Lightning and we have some Skuid pages that we formatted with CSS so we can create PDFs out of them. The record skuid page works fine, but when you click on the button action to “Redirect to URL” in a New Window just opens up the file in the current window. The URL that I’m using it this “/apex/skuid__ui?page=HISOAPrint&id={{Id}}”Which I believe should work?Any idea why it’s not working
Trying to load Tasks content that displays in lightning onto Skuid page. The data is loading into the model via skuid.model.map yet it is not displaying in the UI. Skuid page view: and if you look into skuild.model.map, the subject contents have been captured Recommendation on how to resolve?
We have a wizard that we plan to use to process credit card transactions(Step 1-Enter Information and Process, Step 2-Processing, Step 3-Success Screen). We had a similar page build on the v1 api and the navigation via javascript was pretty straight forward. The javascript was similar to the scripts in this community post. We can not get the same functions to work in v2(I am guessing because they are not there). Has anyone tried to do wizard navigation via javascript in v2? On a basic level, if the card transaction = successful we need to navigate the user to the success screen and if it is not we need to navigate them to the unsuccessful screen
The filter is returning records that are not in the set of values listed. It was working before the update to 11.2.22.FIELD Vendor_Checklist__c records where Gathering_Process__r.Status__c OPERATOR is in the set of values VALUE In Process – Gathering, In Process – Gathering – New Client, In Process – Gathering – No Confirmation STATE This condition, named StatusInProcess, can be modified by filters, but is off by default.
Salesforce Custom Button not working for non admin users
Icon to select fields from related record invisible in Version 1 builder dark theme in Skuid version
I’m trying to fill in the “Model Label” and “Model Plural Label” on a model, but when I do console.log(myModel) I don’t see what I filled in for the Model Label on that model anywhere. Where is the Model Label field being stored / how can I access it?Thanks!
We have created a skuid page to perform some of the global actions and ‘Create new rows’ is one of them. It is found that the Global Action to create new rows saves and creates records in the back end but it does not load newly created record on the page unless the page is refreshed manually. This page used to work nicely earlier before upgrading to Spark(12.2.14). But once after skuid upgrade on org the page seems to be having minor issues such as.i) The page doesnot refresh unless it is manually refreshed after creating new row or sometimes the record shows with the same Account Name as the previously created record.ii) The skuid page stops functioning after few clicks. None of the buttons or functions work after that.To replicate the issue I have created a simple skuid page to create new Account records on Global Action ‘Create new row’, here is the xml:<skuid__page unsavedchangeswarning=“yes” personalizationmode=“server” showsidebar=“false” showheader=“false”> <skuid__tabl
I have trying to call a apex method annotated as RemoteAction from a Skuid snippet. But am getting the below error - VF Page - <apex:page controller=“SurveyHelper” docType=“html-5.0” readOnly=“true”> <skuid:page page=“XYZ_Page_Include”></skuid:page> </apex:page> JS Code - var params = arguments[0], $ = skuid.$; var surveymodel = skuid.model.getModel(‘Survey’); var surveyrow = surveymodel.getFirstRow(); var accountname = surveyrow.Account_Number__c; var xyz= surveyrow.xyz_Type__c; console.log(accountname); console.log(projecttype); var SurveyHelper = SurveyHelper.getquestions(accountname,xyz); console.log(‘SurveyHelper ====>’+SurveyHelper); Error message - Uncaught TypeError: Cannot read property ‘getquestions’ of undefined
Hi all, is it hard to write some javascript that will allow a result returned from the Search component to be auto selected and select actions run if only one single result is returned from a search?Anyone up to the challenge )
I have a page include that the set focus is not going to the first editable field of the field editor any longer. I expect to see a blinking cursor in the scan item field when the page include opens. I used to have a snippet that used to work to ensure the set focus went to the “Scan Item” field but that stopped working also. I have tried two different versions of the snippet that have worked in prior Skuid versions but nothing has worked so far in version 12. 1st JavaScript Version var field = arguments[0]; $ = skuid.$; var delay = ( function() { var timer = 0; return function(callback, ms) { clearTimeout (timer); timer = setTimeout(callback, ms); }; })(); delay(function(){ $('.nx-field > input').first().focus(); $('.nx-field > input').first().select(); }, 400 ); var params = arguments[0], $ = skuid.$; 2nd JavaScript Versionvar field = arguments[0]; $ = skuid.$; var delay = ( function() { var timer = 0; return function(callback, ms) { clearTi
I recently upgraded to version 12.2.13. On one of our pages we use Skuid’s Queue to quickly create records in a table by clicking on the names in the Queue. When you click the records in the queue a corresponding new record is created in the table. They will keep doing this until they have added all the records. Since the table has not been saved yet it is still in EDIT mode. the end user then selects multiple rows, or all rows in some cases and does a MASS UPDATE to add additional data to the fields. In the past the mass update would leave the table in EDIT mode and they could continue to tweak the records before saving. After clicking the Mass Update in version 12.2.13 the table switches to Read with Inline-Editing (which, by the way, is what the table is set to but since they are still in the process of adding new rows it used to stay in EDIT mode until save was clicked). Switching to read with inline editing requires the end user to click into each row after the mass update
Hi Guys,I have a table with a popup with the file upload component and trying to do the following:Drag and drop / Upload the document, this works well but I’m trying to add an on_upload Actions that contains a picklist(radio buttons) to choose the type of document it is and save the recordThe Problem I’m having is that I cannot find where to grab the ID of this newly created uploaded document, I can see it in the Dev Console when it’s created but how do I grab it , so I can make changes to that record?Any ideas would be appreciatedThx
Making use of the Global Field Renderer inline code and this the Password field renderer isn’t handled appropriately.Is there something passed into parameters that I can make use of to replicate the password rendering? Better yet, is there a Skuid js field renderer for passwords?
Hello Everyone, I have tab(let DE) which includes some other skuid page(Page DE). The tab has one action which publishes an event under Whenever Rendered and this action is defined in Page DE.The skuid page (Page DE) has other action sequences and JS snippets which calculates data. I want the calculated data to be displayed on clicking on tab DE. I added an action under Whenever Rendered which runs a skuid javascript snippet. var params = arguments[0], $ = skuid.$; var pageInclude = skuid.$('#ks-xxM-1058).data(‘object’); pageInclude.unrender(); pageInclude.load(); where ks-xxM-1058 is unique id of the page include under tab set. But this is not working as expected by me. How can I load that calculated data and refresh each time the tab(DE) is clicked?
Error message “This page has an error. You might just need to refresh it. First, would you give us some details? (We’re reporting this as error ID: -1301789121)”
I am working in lightning enabled Salesforce on API V1 pages. Is it possible to show dropbox within my skuid pages. I have Dropbox for Salesforce (https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000000prqLEAQ) installed in my org and when I look at standard SF pages I see the dropbox app which I can see and upload data to and from drop box. I would like to see the app within my Skuid page.
Atlanta law firm looking for a Salesforce Admin/Developer. https://www.indeed.com/job/salesforce-administratordeveloper-300b2ee969aea58d
How do I configure a button on a page that when the user clicks it, it updates a check box on a related record to TRUE.
In all my SKUID pages and all my tables I’ve never been able to get sorting / searching client side to work. If sort/search client side is checked (enabled), it will not function, and will only work if it’s being done server side.Additionally, I’d like to be able to sort/search client side on a client side model (not a queried model, but something put together programmatically, either a UI only model or adopting rows into another model) It appears there is no client side search/sort for these sorts of unqueried / not saved to Salesforce models.What’s going on here? Why am I unable to do client side sorting/searching for any/all components on my site? Is this a generic functionality not enabled or is there something wrong with my instance / all of my pages?I’m using SKUID API v1 and SKUID version 12.1.7.Any assistance on this would be most helpful.Thanks!
We have enabled Advanced Currency Management is our org. I see in Skuid documentation that skuid supports Parenthetical Currency Conversion but it does not support Advanced Currency Management. I think this may the root of my issue. We use Skuid to create a quote document. On that document both the currency of the record and the currency of the user (if different from the record currency) appear on the quote document. This happens whether Parenthetical Currency Conversion is enabled or disabled. We only want the record currency to display. We want the user currency in parentheses to go away. Any thoughts on how to fix this? Is it fixable?
Skuid 11.2.10 The common.css introduces the following styling that messes with skuid tables in certain situations. th { text-align: left; font-weight: bold; white-space: nowrap }```  So I added the following to the theme. table.nx-skootable-data th { white-space: unset; }
I stumbled upon something interesting while setting up a new Action in Version 2 and was curious if this was intentional. When trying to take a single row’s context and create 2 records in separate models, the second row creation inherits the context of the first. Example. From a Contact Table an Action that on click created a row on the Contact_Team__c model and then creates a row on the OpportunityKeyContact model. You’d think that using {{Id}} for both would use the original model (Contact) Id for both. But in actuality once the Contact_Team__c row is created, the context being used to create the OpportunityKeyContact row is the Contact_Team__c row’s Id. Was able to circumvent this by having the second part of the Action use {{Contact__c}} which does transfer the data correctly. Was just wondering whether Action framework establishes action context in order of row creation. *If I set the Key Contact’s row creation to {{Id}} it doesn’t use the original model’s {{Id}}
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.