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
The standard UI buttons & links for formal approval processes leave a lot to be desired, particularly the inability to control where they appear. I have a client that wants to do many different kinds of approvals, so we’d rather have some nicer custom pages for that. (Crossing fingers that I don’t need to write apex functions or lots of javascript for this…)I see several posts here about how to submit something for approval, but what is the recommended Skuid method for approving/rejecting records? What about mass approving a list of records?
Is there some way in the skuid Field API to see only certain picklistEntries from a field based on a given value from the controllingFieldI want to create a number of rows based on the number of picklistEntries in a given picklist field. I’ve got it working, but my picklist has controlling field, and I only want to return picklistEntries for a certain given value of my controlling field. Is this possible somehow?Here’s my snippet which creates rows for every picklist entry: var params = arguments[0], <br />$ = skuid&#46;$,<br />expenses = skuid&#46;model&#46;getModel('Expenses'),<br />description = expenses&#46;getField('Description__c'),<br />entries = description&#46;picklistEntries;<br /><br />$&#46;each(entries, function(){<br /><br />var entryValue = this;<br /> <br />var newExpense = expenses&#46;createRow({ <br />additionalConditions: [<br />{field: 'Description__c', value: entryV
Hello,Did anyone ever figure out a way to navigate from 1 child record to another right from the Detail page of that child?Example I have an account with multiple contactsI would like to find a way that when i open the detail page of a contact, to be able to navigate to previous and next related contact(s), using something like a “wizard” step or similarThe sort order would be created dateThank you
I’m attempting to build a page that covers two separate scenarios for creating an Opportunity. The only important difference between these two scenarios is a lookup that exists on Opportunity that will be blank in one scenario but is required in the other.Here is where the difficulty arises. We want the users to be able to course correct and switch between the scenarios while creating the Opportunity.What I have found though is that once the reference field is rendered that is marked required, skuid is treating it as required regardless of if it is currently rendered…Has anyone come across this? Is there a way to have a required field be ignored if it is not rendering?
I would like to hide the Label part of a Template Field so the Template data can use 100% of the row and not be shared with the Label data and Template data. So I don’t want a blank Label, I want the label to not be on the page at all, just display the template data. See below.
I want to create a component with Header and body. Body contains with two columns. Can we have multiple skuid element acceptors in single custom component
… I would like a page where the search box was quite prominent? and it is appearing quite small making it more difficult to select by touch,Can it’s height on the page be adjusted somehow with css?
I think maybe that the tutorial was based on Dropbox’s API V1 whereas creating an app now uses API V2. As such I think there are issues in the tutorial in relation to this as it’s expecting V1. I tried altering the URL to all be https://api.dropbox.com/2/ vs https://api.dropbox.com/1/ but when testing the skuid page I get the following error: Going with the tutorial I get the same message except “https://api.dropbox.com/1/metadata/dropbox/” on the first line.
When a formula function contains text that is the name of a Formula Function and is immediately followed by a left paren, the actual function definition is output. Examples Formula = “VALUE(e.g. Example)” / Output = “parseFloat(e.g. Example)” Formula = “DAY(e.g. Monday)” / Output = “skuid.time.getDay(e.g. Monday)” Notes - The approach used to parse formulas will also result in collisions when there is one function that ends with the same text that is the full name of another function. For example, if there was a function called “FORMAT_FIELDVALUE”, it would collide with the function “VALUE” and unless FORMAT_FIELDVALUE was listed before VALUE during $.each evaluation, the result would not be correct. Given that TODAY() comes before DAY() in the function list (which is out of alphabetical order), possibly this part is already known? Steps to reproduce: Create page from sample below Preview page Expected Behavior ValueExample should be “VALUE(e.g. Example)” DayExample should be “DAY(e.
I’m creating Skuid page to create a new record. I have a Lookup field that a user needs to enter a value for (Loan__c) + a UI-only formula field that is equal to the value of one of the text fields in the looked up record ({{Loan__r.DisplayName__c}}). The problem: When I enter a value for the lookup field, the UI-only field remains blank, instead of filling to the value of that field. I’ve double checked and the field is properly filled out on the record I’m looking up. I’ve also tried adding model actions to save the model changes, save the row, etc. and that’s not changing the result, either. Do you know how I can get this field to display the desired value?
All,I am setting up a button that redirects to a URL. The original URL from Salesforce is shown below. I am trying to recreate that in the URL field in SKUID, see second entry. I have everything working except the highlighted piece. How do I pass a Name instead of the Id? ORIGINAL/a0G/e?CF00NC0000005EMZh=LEHIGH+VALLEY+HEALTH+NETWORK+CEDAR&CF00NC0000005EMZh_lkid=001C000000whB9n&retURL=%2F001C000000whB9n/{{Model.keyPrefix}}/e?CF00NC0000005EMZh=LEHIGH+VALLEY+HEALTH+NETWORK+CEDAR&CF00NC0000005EMZh_lkid={{Id}}&retURL=%2F{{Id}}
Hi,This has been causing me issues for a long time, and not sure how to fix it or make it more performingMostly happening on page includeIf the model is not returning any row, either because there’s none to return or there’s no record that meet default “conditions”, the load of that page include is extremely slow (sometimes 30 secs+)Example : by default model shows records with a condition : “custom date field” must be in the last 4 months.If it finds records it load relatively quickIf no record found for that period, it’s very slow…If i change the filter to example show me the last 12 months, and it has rows, it loads quickly…A rendering condition , not to load table if no rows in model, is not a solution for me, as there may be rows when I extend the range…Anyone else experiencing this kind of issue, and if yes any potential solutions?Thank you,
I cant seem to find any documentation on this, I am trying to call an Invokable Method that takes in a List of Custom Objects called “Allocations”. I want to pass in the Model Rows as the input but I have this screen and I am not sure what goes in this box to accomplish sending the SObjects as a List of rows from the model. The method I am trying to access looks like this… @InvocableMethod(label=‘Send Shared Solar Contract’ description=‘Does something’) public static void sendShardSolarContract(List<facility_allocation__c> allocations) { // Does Something } Alternatively, how can I edit this XML to end up giving me the same desired effect: (I want a List<facility_allocation__c> to get passed but i am not sure of the syntax to do that) Thanks. </facility_allocation__ c></facility_allocation__c>
I’m being asked to increase the size of the gear icon on the queue.Paper theme. I added the code below to an inline CSS called gearSize, which I called in the CSS class of the queue properties..ui-icon .ui-icon-gear { height: 20px; width: 20px;}
I have a table. I want to open the record detail from a row action. I have the record detail set up in a separate page, so I am using a page include. I have tried a page include to the record detail page in a drawer and a popup. The problem is that the url parameters that I pass into my page include don’t have a row context. It is always displaying row 0 in the page include regardless of which row in the table I click. Is there a way to pass in row context into the url parameters of a page include?
Can we add standard salesforce tags like :flow:interview, knowledge:category in a skuid page ?
Hi I’ve got some number fields of which I calculate the total value and then store that value into another number field on the same row (I’m using a custom field renderer for that). The calculation works fine and the updateRow() as well. The only problem I’ve got now is that the total value doesn’t get displayed correctly. Meaning if I update a field to 1, the displayed total is 0. However if I update a second field (or the same field, it doesn’t matter) to 1 or 2, the total now is 1 (its displayed in a template field) Long story short: the displayed total is always “one step behind” as it should be. We’ve got the same snippets and renderers there are on that page running perfectly working on another page. The only difference are the models (and yes the fields are spelled correctly). I’ve now wasted at least 4 hours trying to find another way to calculate/update the field and compared the page to the other page that works properly (everything is exactly the same). Do you guys have any
HelloPlease help me in this scenario.I want to show to custom URL along with the custom error message.Suppose a condition that while creating new record if user enters a duplicate email id then a Custom Error message get appears.Now I want to add a custom URL with that Error message .So that user can click on that URL and get redirected to some other page.Thanks
B"HI would like to provide my users with 2 fields, start and end date, that would act as a filter condition on a list’s model. A button will trigger a requery of the list’s model. The same concept I would use for a searching a particular person by their email or city. How can I display a form with fields and then query based on the provided input?(UI only fields?)Thank you
While rendering a tab in tabset ,can we use SFDC user groups in source type=‘running user attribute’(Render condition)?For the moment we can see only user attributes like role,profile…etc but no user groups.Thanks,Prashanth
I have two account lookup fields in a custom object, Billing Account and Shipping Account. On selection of Billing Account, I want the Shipping Account to be auto populated if the checkbox field ‘Same as Above’ is set to true. I have a snippet built on the mobile page where I could get all address information autopopulated from Billing Account to custom fields (such as street, city, state, zip) on checking ‘same as above’, but I wasn’t able to get Shipping Account lookup field autopopulated from Billing Account. How can I get the Shipping Account field autopopulated too?Here is my code:skuid.$(document).ready(function() { setTimeout(initSignature, 500); returnsModel = skuid.model.getModel(‘FormData’); FormDatafirstrow = returnsModel.getFirstRow(); calculatedDaysReturned(FormDatafirstrow.Date_Received__c); sameAsAbove(FormDatafirstrow.Same_As_Above__c); attachmentsModel = skuid.model.getModel(‘Attachments’); AuthProdReturnRecType = skuid.model.getModel(‘RecordType’)
B"HWhen setting up under tapping action that a popup be displayed, I am unable to get the tapped record to appear on the popup panel. Instead, the panel appears with a single blank record. The Context Condition seems to be set to Id correctly on the Deck. Here’s my specific layout:I have 2 panels, one listing all accounts, and the other displays the details of an account. Both are using the same model. A tap action under the Card Interactions triggers a Set Popup Panel.Any ideas as to this problem?Thank you
I am running into an issue where Page Title buttons will not render when specified conditions are applied. Has anyone else experienced similar issues?
I have a script that I need to update and show new data when a table is re-queried. Currently, the data is being displayed in a template.Can anyone point me in the right direction?Thank you!
When “Loading More” on a tab that has a new row added to it, a javascript exception “Uncaught Model ‘Contact’ has unsaved changes. To update this model’s data, you must first save or cancel the changes.” is encountered. Based on the way skuid merges model data, etc. the exception isn’t the issue, instead, the Load More should be disabled after the new row was added. If you edit an existing record, Load More is properly disabled. It’s only after a new row has been added that the problem occurs. Steps to Reproduce: Create page using xml below Preview page picking an account that has more than 1 contact Click the “plus” sign to add a new contact Click Load More Expected Behavior Load More is disabled and not “clickable” Actual Behavior Load More is triggered and javascript exception in console Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Contact"> <models> <model id="Contact
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.