Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Are you wondering the same? Have you seen our documentation yet?https://docs.skuid.com/latest/en/data-source-types/salesforce/deploy/org-to-org.html#deploy-sandboxHere’s the TL;DR version:Packaging your Skuid pages and other configurations as static resourcesPushing those static resources and other necessary salesforce components from your sandbox org to your destination org using as an Outbound Change Set Unpacking your Skuid pages and page assignments If you have a custom theme with your Skuid configuration, you’ll be exporting and importing that as well. Once all of your resources are in your destination org, you must ensure you set your page overrides accordingly.
Hello Skuid! I am calling skuid.model.save() in a snippet like so: 'saveAllSnippet': function () { var modelsToSave = [], modelsToExclude = ['AddTests','ProcessLog','ChangeTracker','ShowTabs','UI\_Model','DefaultTo','ChartAudit'], dfd = new $.Deferred(); $.each(skuid.model.map(), function(){ if (this.hasChanged && (modelsToExclude.indexOf(this.id) === -1) && this.preventUnloadIfUnsavedChanges) { modelsToSave.push(this); } }); $.when(skuid.model.save(modelsToSave)) .done(function(){ console.log('All Models Saved.'); dfd.resolve(); }) .fail(function(){ console.log('All Model Save Failed.'); dfd.reject(); }); return dfd.promise(); } As you can see from the image below, the .done() response is being called from $.when() despite the fact that the model is throwing a missing required field error. Help?
We’re trying out Salesforce Shield, so we can encrypt patient names but be able to search for patients by name. We have custom fields for first name and last name on a custom Patient object. In a table of Patient records, I can search the server for first name and last name. But in a table of child records, Listings, I can’t search the server for Patient__r.First_Name__c. It works if I search client-side, and it works for non-encrypted text fields. Is this a Salesforce issue, or something with Skuid?I should also mention that in the table of Patient records, the search only works if turn on SOSL search, not if I specify the two name fields. While in the Listing table, the search only works if I specify the two fields. Thanks
Greetings all, I’ve been trying to get a custom renderer snippet for a picklist working, but I just haven’t been able to find anything here on the community that would help. The picklist that I’m trying to render is a custom field that is not dependent on any other picklists, or record types. The problem that I’m having is that even though my console log shows that the picklist values are being set to what I want, the normal picklist values are still being rendered. Here is the snippet: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]), $ = skuid.$; var otherEntry; var picklistEntriesNew = []; field.metadata.picklistEntries.forEach(function(entry) { if(entry.value === 'Bad Data') entry.label = 'Bad Data (Delete)'; if(entry.value === 'Other') otherEntry = entry; if((entry.value != 'Intake Queue Errors') && (entry.value != 'Other')){ picklistEntriesNew.push(entry); } }); // Users want the picklist entries to be in alphabetical order, so we sort them p
UPDATE: I resolved the issue. I had a JavaScript snippet that was creating a link to open attachments for a child object. The problem was, that the child object did not have any attachments. Reading through other posts when you see “Loading…” on your screen for a while, the problem likely lies with your JavaScript. I have a skuid page built for a custom object, which has a table of 150 records displayed. Clicking the a template field on every single record loads a skuid page for the record, with the exception of one. Here is the template field: {{{Name}}} The one outlier just shows a loading screen and will not load anything. The record does not contain any more information than any of the other records that do load. And, it loads fine on a non-skuidified page. Does anyone have any suggestions on where to start troubleshooting? Thanks for any help you can provide!
Hi, I have a skuid page for case detail view. This page shows up whenever a case is created. Now I am working on service console app and i have pre-chat form which captures information like First Name, Last Name, Email, Phone Etc. after entering this info, the chat session is initiated. Based on the info provided in the pre-chat form, a case is created automatically. Now my problem here is, the case created when the chat is initiated has owner field on its layout and the value on this field is the agent name who is chatting with the customer. There are 5 agents and all belong to a group. Is there any way by which the case owner is by directed to the group instead of the user who is involved in the chat. I want the field look like the image below by default instead of the user name as shown in the second image. How can solve this issue? Thanks. -Avinash
I have SKUID page embedded in VF page. So can we set any variable value from SKUID page event to VF page. Example - I have 5 tabs in SKUID page and on selection of a particular tab in SKUID page , I need to pass a Boolean value to VF page to hide one of the component in that VF page. (with rendered attribute)
I see from skuid documentation that you can subscribe to standard events. Got it. It also says that you can subscribe to ‘custom events’ and then shows an example by registering a component. I don’t quite understand this. If I want to listen for a click on a certain element, can I do it with this function, or should I use javascripts native eventListener method?The source for my event is a jQuery. My code is below. I’ve tested the jQuery selector in the console and it’s working but when I click on the “Last Month” action item, nothing gets logged (although other action framework events associated with the action item do work). I’m using an the snippet type is ‘In-line.’$ = skuid.$;skuid.events.subscribe( $(“.nx-actionselect-dropdown-item:contains(‘Last Month’)”).click(), function(){ console.log(‘Last Month Has Been Clicked!’); });I also tried putting the event into a string “$(”“.nx-actionselect-dropdown-item:contains(‘Last Month’)”“).click()”,
Has anyone integrated Stripe payment gateway in a Skuid page as I’m confused as to where I need to put the Stripe coding within the page. https://stripe.com/docs/checkout/tutorialHelp would be greatly appreciated.Thanks
In the mobile composer for a lookup field I would like to be able to control how the search template renders on the page. The reason for this is that when the text is very long it goes off the container causing issues(screen blanks out on iOS). Two questions … Can the search window size be controlled some how? Can the search template itself be formatted so that I could at least do a new line for Contact Name Account Name Billing City for example.
The ‘Body parameters to include with every request’ section of the Data Source settings seems to be failing to include within requests. I’ve got some JSON I’d like to see in every request I make, and only fields I’ve updated through the Skuid UI are being put into the body. I feel this might be similar to a post I made about header values not being populated. https://community.skuid.com/t/rest-models-put-invalid-json-request-bodies Thoughts?
Hi, I have Detail Page for entitlements. All the entitlements that we have are tied to accounts. SO When i say i am on an entitlement detail page, it is related to an account. On the detail page, I created a pop-up button from which we can create a new case related to the entitlement. When the pop up opens, it shows all the fields that are to be filled to file a case. Among these fields, account is a look up field from which we have to select what account is the entitlement tied to. My Case creation pop up looks something like this. No My issue is, Is there any way to auto populate the account field. So whenever there is a need to create a case, we will create a case from the pop up and when the pop up is opened the account name should be populated automatically (The account name should be same as what we see on the entitlement detail page ) on the New Case Layout. My entitlement detail page looks like this: How can i solve this issue? Thanks.
is it possible to limit the records queried by a lookup in mobile? like, only show the first 10 records or make it scrollable, instead of showing everything in one go? because it’s making the UI in mobile crazy. in the browser, it extends the page. In the mobile, it just shows a white screen and you need to restart the page.
HI, On calendar we use , by design we want those things to work Ability to click to dial Have an on click popup Separately they both work fine, the problem is I’m trying to find a way to be able to click to dial , with having the on click popup pop every time I dial a number Now when i click on the little ‘phone’ icon, it dials the number but also pops up the box. Is there any way for that not to happen? and only if i click anywhere else than the ‘phone’ icon, for it to work? Thx
We have a table where users like to ‘tab’ their way through the fields as they complete information in the table. One of the fields in each row is automatically populated (using a custom field renderer) with a value from the prior row in the table: In the image above the value highlighted in blue is populated from the previous row. As users tab through the highlighted field and into the next one, the pre-populated value is lost. Is there a way to disable this particular field from being ‘tabbed into’? eg a tabIndex property? in the image above, a user should be able to tab straight from 2130 into the empty reference field on the right.
Not sure if this is a skuid issue, but I’m sure some of you know a lot more about xhr requests than i do… I’m trying to use cornerstoneand cornerstoneWADOImageLoaderin skuid. I’m getting this CORS javascript error: Why is CORS even an issue when the source of the request is *.force.com? The even more interesting thing is that I’ve added the domain ‘https://skuid.na24.visual.force.com’ to the salesforce CORS whitelist: Any idea what’s going on here?
I have the following field render that changes the background color of a field in a field editor. I also need to change the background of the label. Is that possible using a custom renderer? var field = arguments[0], value = arguments[1], $ = skuid.$; var PriorityColor = field.row.PriorityColor\_\_c; if(field.metadata.accessible){ field.element.css({'color': 'white', 'background-color': PriorityColor,'min-height':'10px'}); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); }
I have a customer who would like the event/meeting time selection to behave just like the iOS time picker. Has anybody tried to do this? Something like this… Date time scroller demos for web and mobile | Mobiscroll
I thought I saw another thread about this a while ago, but I couldn’t find it again. Sorry if this is a repeat.This seems like a pretty simple fix, guys. Right?
Is there a general reason why I would get the error “Failed to load resource”?What are the next steps to debug?In my specific situation, I am getting the error followed by the service URL when trying to invoke a custom apex action.Error:Failed to load resource: the server responded with a status of 400 (Bad Request)Service URL:https://skuid.XYZ.visual.force.com/services/data/vXY.Z/actions/custom/apex/InvocableClassName
Hi, I’m new to skuid and am linking it; however, i’ve run into an issue. My goal is to present the user a list of records and allow the user to create a chatter post related to a record in the list that contains an @mention by default. The @mention is to the the user that is part of the record. The approach I’ve taken is to have a skuid page that has a model of the records I want displayed and have a table set to that model. The table has a row action that runs multiple actions. The first action is Show Popup and the second action is Run Snippet . The popup includes a template that includes an iframe that references skuid__Social apex page that renders a chatter form. The snippet gets the user info from the record and composes text for the @mention. The problem is the snippet runs before the popup fully renders even though it comes after the popup action. So I cannot get a reference to the text area to set the @mention since it hasn’t been rendered. My hope is to wait until the po
Is there any way to filter on formula-based checkboxes in a queue? We have 7 checkbox formulas that are either true or false based on inputs entered throughout a project lifecycle and they correspond to different internal workflows that need to be cleared before the project can move to the next level… I would love to use a picklist to filter on the workflows but a project could potentially fall into two or more workflows at the same time so we need to be able to mark them (and search for them) as such.
Do you know which version of javascript is supported in SF1? ecma 5 or 6?
Hi everyone,I use page includes on a model-heavy page to avoid initial load speed getting too heavy. However, I’d love it if, instead of users having wait while each tab they click into lazy loads, I could trigger all page includes to load upon the document ready event (or similar). I imagine this working somewhat like so:* Page completes initial load* Use JS snippet to detect page includes* Trigger lazy loading of page includes automaticallyDoes anyone know of a way to do this?
when i am calling snippet from HTML template , getting following error - – Uncaught TypeError: Cannot read property ‘item’ of undefined code -{{Alert_Message__c}} whereas snippet works fine when called from Row Action.
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.