Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
I am trying to figure out how to pass multiple values as conditions to a Page include. For instance, I am calling a Page via page include, call it “Prospects”. Prospects is a page that has a model of Accounts. Those Accounts have an Industry field and a Sub-Sector field. What I would like to accomplish is to filter the Prospects page via page include to show Accounts with either “Auto” or “Energy” as the Industry but NOT either “Clean Tech” or “Hybrid” as the Sub-Sectors.Could someone let me know if this is doable? And if so, how to accomplish this?
Hi,Facing issue in re-directing to detail page after record creation. I am using wizard control (Step1, Step2, Step3) to create a record from skuid. After click on ‘save’ button which is in step 3, expecting the new record to open in detail page of the record (it’s navigating to detail page but not showing record data except tabs which i used, here it’s failing to get the id of the new record after navigating to detail page) record id is generating and creating record in list view. Added few field’s and button (buttons to navigate previous & next step) in each step but in step3 added one more button (Save and submit) to save the record, below are the actions behind save and submit button 1. Show message and block UI2. Update a field on rows3. Save Model Changes (given my model name)4. Unblock the UI5. Close all popups5. Redirect to URL (URL : /apex/ui?page=My detail page name&Id={{{Id}}}&navOpen=Imperium)Expectation: Record should navigate to detail page immediate after r
I have added enable conditions to some fields in a field editor. When the condition is met the field is enabled as expected but the item label color goes black. Fields that don’t have enable conditions have item labels colored blue from the theme that is set for the page. Adding CSS to the field editor and to the fields themselves does not work, the enabled field style overrides it. How can I retain the theme color for enable-condition-met fields?
I have a page with a number of tabs on it, they are displayed on the front end as a picklist for ease of use, but on the back end, I cannot reorder the tabs easily, they get jittery and jump around. Is this a known issue? Please see video below.https://cl.ly/231V0Q2m1I3x
I have a field editor which has checkbox field (ui-only field)When this checkbox is checked, I would like to disable fields in field editor (I have input text fields and picklist fields as well)I gave a dummy css name to fields in field editor .and tried something like : $(“.ca”).each(function(){ this.disabled=true; console.log(‘disabled . . .’); });This didn’t work.Any ideas ?Thank You.K
Hi All,I have a ‘Controlling’ UI only field which I am using to set the value of another Status field.When the page loads how can I have the value of the Status field already populated in the ‘Controlling’ UI only field?The UI only field is RADIO buttonsThe Status field is a PICKLIST
Ok, so this isn’t directly related to Skuid development, but I’m hoping someone here has experienced a similar issue.Salesforce’s Call Center integration allows you to specify a custom VisualForce page as a screen pop. Unfortunately, while the user is working under the Skuid namespace (acme–skuid.na16.visual.force.com) this means the user is sent to acme--skuid.na16.visual.force.com/apex/OurCustomVFPage.That custom VF page isn’t available under the Skuid namespace, so Salesforce just throws a “That URL doesn’t exist” error.Does anyone know how to make our custom VF page available under the Skuid namespace?Thanks!Here is the question I’ve posted on the Salesforce forums.
I think I’m ready to take the dive into an advanced training course. When’s the next training event?
We are working in two sandbox environments, and have found that in our newer, partial sandbox (staging), that we often need to check the “Process Model client-side” box to get the pages to function the same as the initial sandbox. This is especially true when those models have conditions based on other models that are getting re-queried.Any idea why this would be different from one environment to the next? Recent update in Skuid? Other setting?Thanks,Seth
Hello, I’m trying to create a custom button on the Account page, non-skuid page, that will open a related page in edit mode. I have created a visualforce redirect page with this markup: <page standardcontroller="CEPdat__c" extensions="skuid.Redirects" showheader="false" sidebar="false" readonly doctype="html-5.0" action="%7B!IF(canUseSkuid,'',redirect)%7D" title="Edit {!CEPdat__c.Name}"> <page page="CEPred"></page> </page> my custom object’s api name is: CEPdat__c Any ideas of what the syntax would be for the Custom Button? I tried this syntax but it didn’t work: /{CEPdat\_\_c.Id}/e?retURL=%2F{Account.Id}%3Fcore.apexpages.devmode.url%3D1%26nooverride%3D1%26sfdc.override%3D1
Hey Team, I’m currently completely baffled about the following issue I’m currently having with some models. At a high level, what I’m aiming to do is Account Matching on a Lead detail page, if the Lead happens to be using our product. Here are the 3 SFDC objects/Skuid Models I’m working with and their relevant fields: Lead (Id field) Product_User__c (ProductUser is the Model name) (Lookups to Lead (Lead__c), Subscription__c, and Subscription__r.Account__c) Account (ProductUserAccounts is the Model name) I am displaying one Lead Id per page (Condition: Id = param(Id)), up to 20 Product User rows, and only one ProductUserAccount. A Product_User__c record does not have to lookup to the Lead, but it does have to look up to a Subscription. However, for a ProductUser row to show in Skuid, it does have to be associated to the Lead we are viewing (Condition: Lead__c = (Lead)(Id)). The Subscription (Subscription__c) that the ProductUser looks up to does not have to necessarily look up to an A
How do I reference the case number field within a case aggregate model when it is not available within the grouping selection? I am trying to following the instructions from the post “How do I create a link on field in an aggregate table?” We use the Case number to identify cases and I only see the Id, reference fields to other objects and pick lists. I am linking my case aggregate “EncountersAggDrillDown” model (see xml) to my case basic “EncounterCaseNumber” (see xml) to get the CaseNumber field. Within the table Encounters by Domain Drill (see xml) I attempted to create a template field with that would yield the case number referenced in the EncounterCaseNumber model. The template field code is: (field type=“COMBO” valuehalign=“”> Case Number &lt;a href=“/{{{id}}}“target=”_blank”&gt;{{{Model.EncounterCaseNumber.data.CaseNumber}}}&lt;/a&gt; ) EncountersAggDrillDown Model 1 “EncounterCaseNumber” model “EncountersAggDrillDown” Encounter ID &lt;a hr
In salesforce I have a global picklist with 50 items. In a multi picklist I have 50 items to select from and in a second multi select picklist I only want to show 40 of the 50 as visible and selectable. Both of the mutiplicklists are using the same global picklist. Can this be done with Skuid?
I’m looking to find out how to do my conditions(i think) I have two models 1 is standard Opportunities and other is a custom object, i’m am displaying data from the Opportunities and by default I am creating a new record for my custom object when saving data. What I am looking/wanting to do is by default with my custom object created a new record BUT if there is a related record that matches the Opportunity then display that row from the custom object with the data contained. Does this make since? FYI is the public force.com page.
Hi All,Can anyone help me on below requirement,I have a Multiselect picklist. I need to display data up to 40 characters in Skuid List view page.(here after selecting multiple values it is crossing limit of 40 char in list view page)I have tried with changing field width in skuid page to 40, 40%, 40px etc… but it didnt work.Much appreciated your help in this regard.thanks
Hi everyone,I have a problem with the export of table data in one of my builds.Previously the “Export” button was working fine and then just a couple of days ago it has vanished.I investigated on the back end and retraced the set up of the “Export” button (As per the instructions found here… http://help.skuid.com/m/components/l/102563-export-data-from-a-table ).I have been working with my manager on this and still no success in fixing the issue. Is this a known problem that has occurred to anyone else? If so can anyone give me some advice on how to mitigate this? Many thanks, Matt
I have a “search” model with a UI text field where the user inputs the text they want to search from. Sometimes, based on the source where the user enters this page from, the search string is passed over using a URL parameter. My url parameter is ‘djnum’ and the model doesn’t query on page load, and creates a new model if none is found. My problem is that the UI field always is populated with the parameter name itself - not the value, and not a NULL if the parameter is not found in the url. In this example,url parameter djnum=‘test’ so I would expect to see ‘test’ in my text box, not djnum. Any ideas on this one?
I am trying to code a button to send to a email address in the open contact by opening the users default mail client on click and creating a new email to match a Salesforce email template.I would also like to do the same type of thing for selected contact in list view.
Does anyone know how to refresh the Chatter feed component on a page without having the reload? Kind of like a model refresh. We post to chatter on the record quite often for notifications from a snippet, so it would be nice to refresh the chatter component before the snippet finishes so the user sees the results on the page (their post to chatter) without having to reload the page.Thanks!
Hi,I tried building a custom pop up where users can attach files to a record while they are editing other attributes of the record but somehow nothing happens when they try to do so. They simply drag the file to the marked area but nothing happens and even the file does not get attached Please helpi want to make it visible to them that when they drag the file to the marked place it is getting attached and listed in the table below as attachmentsAnubha
Hi everyone. I am having issues with a field in my panel and im not sure why this is happening. In a nut shell I need to be able to edit the field but can’t for some strange reason turn the “Read Only” option off. Can anyone please advise me on why this would be happening?
I can not get the enabling based on Snippet Returning True to work. I’ve simplified my snippet down to this: var enableCheck = true; console.log('check result ’ + enableCheck); return enableCheck; Console returns a true but the button does not enable. Any hints on how to get this to work? I’ve tried returning true and “true” and neither are working.
i have a requirement wherein i want a field to appear on specific value of a ui-only field (or rather toggle it based on the value of the ui-only field). For some reasons, even though the default value of the checkbox ui-only field has been set to true (or false), it is always considered to be “null” and hence the fields dont appear on the page load.
I have a UI field “boolIsPlanSelected” which is defaulted to “false” i.e. checkbox unchecked.I am using this field just to toggle between the images of checked and unchecked checkbox. So when a user clicks an unchecked checkbox, the image should be flipped to a checked one and vice versa.On the page load, the image of unchecked checkbox should be present, which requires me to check the value of this ui-only field in the rendering section of the image.Now when i console.log the value of the ui-only field in the js snippet that runs on the click of the unchecked checkbox image, the value of the ui-only field is found to be “null”.Why is the Default value not being considered?var selectedItem = arguments[0].item, selectedList = arguments[0].list, selectedModel = arguments[0].model, selectedPlanRow = selectedItem.row; console.log('selectedPlanRow.boolIsPlanSelected = '+selectedPlanRow.boolIsPlanSelected); if(selectedPlanRow.boolIsPlanSelected){ selectedPlanRow.boolIsP
i can write console.log statements, but if i try to debug the value of any javascript variable directl in the console, it doesnt recognize it.
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.