Upcoming Event - 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
Want to make Assigned To field on Task, should point Partner User, User instead of Lead, Contact.We have followed the reference“https://community.skuid.com/t/can-i-limit-which-objects-are-possible-targets-of-polymo…” _ as well followed the given proceedures such as1) creating inline snippet2) using that snippet for custom field rendererBut it doesn help us the way we expect. Any help with this asap will be appreciated. Thanks.
Has anyone replicated SF’s recurring task options with any success? If so, would you be willing to share how you did it?I have a popup for creating a new task and would like to give people the ability to create a recurring task from this popup but SF looks to reuse some of the recurring fields depending on what frequency or recurrence you would like.Thanks,Scotty
I have a very complex opportunity detail page. There are nine related objects, all with their own tabs. Three of those related objects are joined to the Opportunity via join objects. Two of those objects are working fine, but this third object isn’t.What I’m trying to do is to display in a table data from the related object, not the join object. Our opportunity is a Loan, and the three related objects are Borrowers, Properties, and Title Reports.Borrowers are a record type of Account, and are joined to the opportunity via the Borrower Join custom object. My BorrowerAccount model has a condition of Account ID is in the BorrowerJoin model’s Account field. The BorrowerJoin model has a condition of Opportunity lookup field is in the Opportunity model’s ID field. On the Borrowers tab I can display data from the model BorrowerAccounts, and directly edit the accounts. Properties are a custom object, related to opportunity via the PropertyJoin custom object. My Property model has a condition o
I have created a Skuid page for my Task details. I want to use this page for task creation and also view viewing the details. I have a button to create a Task and I am able to send certain data like type, whatId, etc. to it which is working well except I want to populate the activity date and a completed date field with Today. In my global action to create the note, I am not using the create a new row action because it would not be in the same model.Another issue is that I am also using this page for creating a to-do which can have the activity date set as today but I want the completed day to remain blank.Any ideas? (Ideally I would not like to use javascript)Thanks,Scotty
Is it possible to have a pie chart split the pie slices according to individual options in a multi picklist? I have the pie chart set up, but each pie piece illustrates the concatenated value of the multi picklist values. Example: Pie piece 1 displays the label, “Option A, Option B, Option C”. I would like each pie piece to just display a single Picklist option. Thanks
I would like to clone a parent record, and multiple child records of that parent record with one click. I would need the cloned records to have the same parent/child relationship as the original records. Example: I need to clone and opportunity with opportunity products and a child custom object. Is that possible?
For a new calendar that I’ve built, I get some odd behavior when the displayed dates are changed (I’m assuming this is adjusting some sort of condition on the model).If I change the dates displayed, I cannot create any new appointments.I’m sure I have missed a piece at some point, but can anyone figure out what is going on?
We have a unique field to prevent duplicate entries from being inserted. We delegated this to Salesforce to minimize the number of server calls. The problem is that even though we anticipate that exception can occur, we are unable to find a way to prevent the duplicate values errors from being shown.Please advice.
I thought I was cool and had figured something out here. but alas. I’m humbled. The goal is to create a next tab and previous tab script that can handle tabs that can be conditionally rendered away.Generally, the expected syntax for ‘next tab’ would run something like this: tabset.tabs(“option”, “active”, tabset.tabs(“option”, “active”) +1). But that causes trouble when a tab is conditionally rendered away. Here’s a page to see what’s happening: <skuidpage unsavedchangeswarning="" showsidebar="false" showheader="true"> <models> <model id="User" limit="0" query="false" createrowifnonefound="true" sobject="User" doclone="" type=""> <fields> <field id="IsActive"/> <field id="UserPreferencesActivityRemindersPopup"/> <field id="ReceivesAdminInfoEmails"/> <field id="ForecastEnabled"/> <field id="UserPermissionsMobileUser"/> <field id="UserPreferenc
Conditional rendering in a popup only works if the model of the rendering condition is the same model as that of the model of the “context” that opened the popup. (i.e. The model of the page title of the button that opened the popup or the model of the table that popup is a row action of).
I have a table with 3 records, when hitting the “UnApprove All” button I want to update the “Approval Status” field with the same value for the 3 records, they all should change to “Not Approved”, but for some reason only the first record in the table is changing, below how I defined the button and what I’m seeing. I’m missing any another configuration? What can I do update all the records on my table, when hitting that button?
Is it possible to change the Day View to show the hours vertically instead of horizontally?
Is there any way to change file encoding for table exports, similar to how you can choose encoding in the standard Salesforce reports export details options? A lot of our data contains foreign characters which makes the export feature unusable unless we can export with ISO-8859-1 encoding.
I have a use-case where I would like to be able to “Export table data”, even if there are unsaved changes on the model (which would essentially ignore any unsaved changes).I noticed, however, that if I have unsaved changes, the Excel icon is greyed out and I am unable to export. Is there a snippet I can use to override this?
I have a situation in mobile page builder. I have a skuid button to run multiple action. First action is to run javascript snippet validation rule for character limit check, required field check and check for valid email. When limit exceeds or required field empty or invalid email, javascript returns false and on-error action for the first action is block UI and show error message, but it still fires next action. Is there any way to stop firing next action in mobile page builder, if a rule returns false. Multiple actions on button: Javascript snippet ‘validStep1Fields’: //Define boolean variables var limitExceeded = false; var empty = false; var validEmail = true; //Validate Email format with Regex var validateEmail = function(email) { var re = /^(([^\<\>()[]\.,;:s@""]+(.[^\<\>()[]\.,;:s@""]+)\*)|("".+""))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/; return re.test(email); }; var mergedRegisteredFields = $.extend({}, clientModel.reg
ERG!!! This is not following any standard for week numbers. Here I was attempting to make everything work with the data grouped by week that starts on a Monday or Sunday. Nope. First day for the year this year, 2015, is Thursday. So the first day of week for every week is Thursday.
I have a use case where I want to run a snippet whenever a checkbox field is clicked. Any guidance would be appreciated.
I know a question was asked a couple of years ago:https://community.skuid.com/t/are-all-day-events-supported-on-the-calendarI could not find if this functionality as been added or if there is a good work around.Thanks,Scotty
Hello - When selecting a value from autocomplete by pressing the “tab” key, the focus goes to the top of the page. Previously, selecting a value from the list with tab would go to the next field (by index). It appears that at some point recently the behavior was changed to call “render” when the field value changes in autocomplete which it previously did not do. Steps to reproduce: Create Account details page Add Parent Account Id field to editor above the Name Preview page Start typing text to locate an account. Use the cursor keys to pick an item and “tab” to select it Actual Result Focus goes to top of page Expected Result Focus should go to Name field Sample Page XML <skuidpage unsavedchangeswarning="yes" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"/> <field id="Crea
Hello - After a record is saved on a page (no redirect, stay on page), changes that should trigger conditional rendering to show/hide elements are not resulting in expected behavior. Steps to Reproduce: Create Contact new page Add a tabset with 2 tabs Put default field editor in to tab #1 Set tab #2 to conditionally render when first name is not blank Add template field to tab #2 with “hello {{{FirstName}}}” Remove values for “After Save Redirect URL” and “After Cancel Redirect URL” from “Save” button Preview page input text in to first name field Actual Result = Expected Result Tab #2 appears remove text from first name field Actual Result = Expected Result Tab #2 disappears Input text in to Last Name Save Record input text in to first name field Actual Result Tab #2 does not appear Expected Result Tab #2 appears Sample Page XML <skuidpage unsavedchangeswarning="yes" showsidebar="true" showheader="true" tabtooverride="Contact"> <models> <model id="Contact" limi
Grrrrr. I’m driving myself nuts trying to figure out how to pass the id from a page into a page include to generate a pop-up…… I have this page which accepts an id as a parameter: Then I have this page which has the page include in a pop-up to display the above page, which I’m trying to pass the id into the query string: What am I doing wrong??!
Hello,I’m trying to create a VisualFoce page for a Skuid Page I just built, however, the “New” button (outlined in red below) is missing from my view. How can I activate or workaround this button?
I’ve built a component pack with two custom components. Here’s what they look like in the builder: Now, when I try to configure a popup, here’s what the components list looks like: No custom components. Arg!
We are using a SKUID page to over ride the standard Salesforce page for a specific Account record type. That works fine. I also have an associated Edit page that over rides (redirect) the standard Salesforce page to a SKUID edit page. I am seeing a problem when Edit is redirected the standard in-line editing on non-Skuid pages does not work. This is only for one object, the Account object. Is there a way to redirect the edit page and still have the in-line edit function correctly for all other Salesforce pages for that object?
Hello - When a wizard button is marked as “run multiple actions” and one of the steps is “Save Models” and if there is more than one model selected to be saved, error messages are not displaying. If only one model is selected for save, error message display properly. Analysis In wizard.step.button case “multi”, step.editor.models.length = 0 when multiple models are involved but when only a single model is involved, step.editor.models.length = 1. Steps to Reproduce Create Account “new” page Remove all default components Change model name of Account to “AccountOne” Add another account model (don’t load, create new, add Name & Id) called “AccountTwo” Add wizard with single step Add two fields editors with single field for “Name” using AccountOne and AccountTwo Add wizard button - Run Multiple, Save Models including AccountOne and AccountTwo Preview page Click wizard button Actual Result Save does not occur but no error messages Expected Result Save does not occur and error messages a
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.