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
I have a ton of content on about 10 different tabs and I have it set to save the models upon switching between them. However, it does it when I first land on the detail page which is not desirable. Is there any way to have it not do that? Or do I need to add a tab that doesn’t have the auto save on it that is displayed first?
I have a list of strings, where some of them are children of some other rows in the list (lookup relationship). I wanted to show them in hierarchy along with checkbox on each item, where parents as table rows and children as drawer in each row, then added mass action on the table, which solved the purpose. However, if no parent is selected and only the child is selected, the save button does not come and in that scenario I want to auto-select or check the corresponding parent, which I am not being able to do. The JS code loks like - var selectedList1 = skuid.$(‘#assignReasonTable’).data(‘object’).list.getSelectedItems(); debugger; var selectedList3= ; var descriptionList = ; var selectedList2= skuid.$(‘#assignReasonTable’).data(‘object’).list.getSelectedItems();//[0].childComponents[0].list.getSelectedItems() selectedList2.forEach(function(entry){ selectedList3.push(entry.drawers[0].childComponents[0].list.getSelectedItems()); }); selectedList1.forEach(function(item){ descriptionL
Hi everyone, I have been trying to get some javascript to grab the gps geolocation of the user when a js snippet is run and add this to a couple of fields (longitude / latitude ). My issue is saving the var to the fields - This is my js ( I think this works ok)… navigator.geolocation.getCurrentPosition(function(position) {&nbsp;&nbsp;<br>&nbsp; var gps = (position.coords.latitude+position.coords.longitude);&nbsp;&nbsp;<br>&nbsp; window.GlobalVar = gps; &nbsp; continueSomeProcess();<br>}); Does anyone have any ideas how to get this to work?
I am working on some new picklist values for a field in our sandbox. Suddenly changes to picklist values are not displayed in SKUID, but are displayed in native UI. I’ve tried editing the Skuid page and saving. These are not dependant picklists and the values are assigned to the record type.
Getting all kinds of new errors using IE11 after the Spark update. I’ve had similar issues in the past, going to try working with non-child pages and checking my code for .endsWith or .includes
I’d like to replicate the behavior from a custom button built for us by a consultancy in the classic interface, into a new Skuid page built by me. My understanding is that it’s not possible to call a custom button from Skuid, or at least it doesn’t appear as an option under the “Run Salesforce Action”, which is a shame, as I don’t have the best understanding of what the button does. Currently the custom button calls a visualforce page (see screenshot) It calls this visualforce page Which calls this apex class: public with sharing class MergerOverrideExtension { public Merger\_\_c controllerMerger { get; set; } public MergerServices mergerService; private CDFIntegration cdfIntegration; private MergingAccountService mergerAccountService; public MergerOverrideExtension(ApexPages.StandardController controller) { this(controller, new CDFIntegration()); } @TestVisible private MergerOverrideExtension(ApexPages.StandardController controller, CDFIntegration cdfIntegra
I’m trying to get my Skuid Page that is public facing to show up in a good format when sharing links to apps like WhatsApp and Facebook Messager. To do so, I need to add meta data with tags from this website http://ogp.me/ However, I can’t seem to find a way to access the element directly and trying to add it with a query snippet $(‘head’).append(html code) doesn’t seem to work either. I’m guess it’s because the jquery isn’t ran when a link is shared. Is there a way to access a Skuid pages head element directly? thank you!
Is there a way to code a button so that when pushed the value of one field from a model is copied to the clipboard?
I have a Skuid page I am using with Salesforce where I’m doing a csv file upload then comparing Opportunities and updating fields on the Opportunity (i.e. dates, stage, etc). The file has grown and now I am getting the error: “Maximum view state size limit (135KB) exceeded. Actual view state size for this page was 157.109KB” when try to upload a document. There is a writeup on what needs to be done to fix it but I believe this is something Skuid would need to do on the platform (https://salesforce.stackexchange.com/questions/53112/maximum-view-state-size-limit-135kb-exceeded)Has anyone come across this and/or is there a fix that’s known to resolve this issue?Thank you!
The docs suggest the labels for feedback can be edited from Salesforce: Using Custom Labels with Skuid on Salesforce If you’re using Skuid on Salesforce, it’s possible to customize the content of the Feedback form (including headings, labels, and picklists) using the Salesforce Custom Label feature in Skuid. Feedback form labels are titled “Global_Feedback_[label name].”However, Saleforce indicates that these Custom Labels are managed and I'm unable to edit the values. Is there something I'm missing or another way to accomplish this?
I have created a global Reset Action which deactivate the all model conditions and clear the search box using JavaScript Snippet. It works fine if the user is in the session.But when user logs out from the portal and log in back it remembers the last applied filters which was already reset using the Reset Action.I guess the Reset Action is only deactivating the condition it is not toggling the values to the cache to forget the details of removed filters.Please suggest me what to do in this scenario.
So I am trying to set the value of a new row field via the save button. The value should be the Sales_Rep__r.Id from the object Opp, Saved to Sales_Rep_1__c on the OppItem object. From the documentation I though I just needed to call the value via {{$Model.Opp.data.0.Sales_rep_r.Id}} or Opp.Sales_rep_r.Id But when ever I try like below, nothing is passed to the new field. Any ideas?
I have a model that pulls data from two different child models (objects) and display records with a column called “Age”. Age is a UI only formula field and it’s the max of two child models. I couldn’t find a way to sort the master model (parent table) based on this calculated UI only formula field. I tried few links which are a year or two old but no success. Any help is greatly appreciated.
I have a table with lots of filters. Sometimes when multiple options are chosen in the filters, it causes the remaining filters to “wrap” above. This is annoying in itself and is my first issue. Is there a way to keep the filter boxes the same width and not have them expand? My second issue is when they do expand, it causes other filters to be pushed up above the main filter line. And when they do this, they cover up the labels of the filters on the main line.
I have a skuid page that will only display for system admins. I have done the following to try to resolve this issue: I followed the user documentation regarding general page access and ensured correct licensing fro the use. I added the user to the correct Permission sets per the documentation. I shared all pages through the skuid interface with all internal users. I reviewed all object permissions in my org to ensure that the data was available to the profile. I compared my sandbox and production and could not find any different in the profiles and their security. Any possible ideas would be appreciated. Below is the page that displays, it is simply meant to be a landing page and display two tabs. Currently Displaying: Set Up of what SHOULD display: Any suggestions would be appreciated.
I have a button in a Skuid Opportunity overlay that is not working. When pressed, nothing happens at all, not even an error message. Any idea why this might be happening? I and my team are stuck! Button Type: Run Skuid Snippet Snippet Properties: Resource location: In-Line (Snippet)Snippet Body: var $ = skuid.$; var opp = skuid.model.getModel("Opportunity").getFirstRow();var o = new sforce.SObject("Opportunity");o.Id = opp.Id; var contactId = sforce.connection.query("SELECT ID FROM Contact WHERE Name LIKE '%" + opp.Installer_Salesperson_Text__c + "%' AND AccountId = '" + opp.AccountId + "'"); if (contactId.getArray("records")[0] === null || contactId.getArray("records")[0] === '' || contactId.getArray("records")[0] === undefined) { alert('We were not able to find a contact record for the Salesperson contact on this opportunity. To login as user, please go to their contact page.');} else { var result = sforce.apex.execute('GhostingUtil','login',{partnerConId:contactId.getArray
I have a Model called Parent with zero or three records, with with an “Allowed” number field in salesforce. I have a Model called Child, related to the Parent model as you would expect. For each row in the Parent model there may be up to a dozen or so rows in the child model. The Child model has a “Used” number field in salesforce. I want to display a table of the Child model with a ui-only formula field that shows a “Remaining” value. Suppose the data in Parent looks like this: Row | Name | Allowed 1 | A | 10 2 | B | 5 And the data in Child looks like this: Row | Parent | Used 1 | A | 2 2 | A | 1 3 | A | 5 4 | B | 45 | A | 12 Is there any way I can write a ui-only formula so that I can display a table on the Child model that looks something like this? Row | Parent | Used | Remaining 1 | A | 2 | 8 (=10-2) 2 | A | 1 | 7 (=8-1) 3 | A | 5 | 2 (=7-5) 4 | B | 4 | 1 (=5-4)5 | A | 5 | 0 (=MAX(2-5,0))
Since upgrading a test environment to Spark I have found a number of our pages are behaving differently when a user hits our custom “Save & Close” button (screenshot of the high level actions below). When the user hits “Save & Close” the page hangs and permanently freezes. (screenshot below) In another test environment.on Skuid version 11.2.10 I am able to create records of the same type and page xml, using the same “Save & Close” button without issue. Affected page XML below
We have begun experimenting with Spark and would like to replace some apex we have with the new api features to record user location? There is very little in the documentation - I found “Refresh user location”Refreshes the location merge variables to reflect the user’s current location.and I found some merge variables listed for user address.Can anyone explain how we trigger the refresh user location “action” and if we can store latitude and longitude when this is triggered?Merry Xmas all
We have around 80 skuid pages in a module in a managed app which we cant bundle into a static resource as we hit the salesforce 5Mb static resource size limit.Is there any way we can run apex to unpack the module and then a second piece of apex to unpack a second page pack perhaps?Any ideas.
HelloI am having an issue with the Mass Actions on a table I have. I have a table of accounts and I want users to be able to select records on the table to create a bunch of cases en masse based off of data on the account. I then want to update a date field on the account for the date that this happens.I am having no issues creating the cases for all the accounts selected, but I am having issues on updating that date field on the account. I have the actions set up to update the account row with today’s date and then save the model, but it looks like these actions are only being processed when one account on the table is selected. When one account is selected the date is set and saved with no issue, but when multiple accounts are selected the date is not set and the model is not saved. All of the other actions are running just fine. I set the account model to block the UI if there’s an error on save, but that’s not popping up, so I don’t think it’s trying to save at all.Is there any kno
Use Case : I want a field to be required if user with specific profile is trying to create a new record. I added rendering condition to for the field and I have required.This field is throwing an error when the user not specified in the rendering condition tries to create a new record.How can I make this work?
Suggestions for displaying specific text after Model Lookup compares ids. I have a contact model and campaign model. I select contacts and add them to campaign object.Contact and campaign objects are on different tabs. In order to avoid users from selecting duplicate contacts, I would like to put in a comment that user already exists in campaign. I am using a ui only formula field which does a model look up to compare the ids.- MODEL_LOOKUP(“CampaignMembers_Contact”,“Id”,“ContactId”,{{Id}})It returns the id of the contact. But I would like to return a canned text " Contact alerady exists" Anytime I try that the formula does not work.
Salesforce is going to introduce LWC i.e. Lightning Web Component in next couple of months? Is that going to be the end for SKUID?
So I have need to create a Table that allows users to search by a account to find an order. That’s rather simple, The users are also asking to be able to have a additional search box to limit those results further by orders from that account that also have a product item. The issue is that the products are in a related object to the order. Is it possible to do this?
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.