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
Is there a way to control the table row action spacing? See screenshot. I have multiple buttons/actions and need to put a little space between them.
Defect/Issue Description: Can’t group events by owner. Environment: API Version: V2 Release: Edinburgh Release version: 16.0.2 Platform: SFX Brief Summary of the Defect/Issue: Unable to get events grouped by ownerid in week and day views. Action Performed:Built page with grouping Expected Result:Failed to group Actual Result:No events in grouping Additional Resources: <skuid__page unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="Events" limit="20" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Event"> <fields> <field id="WhoId"/> <field id="Who.Name"/> <field id="Subject"/> <field id="WhatId"/> <field id="What.Name"/> <field id="StartDateTime"/> <field id="EndDateTime"/> <field id="ActivityDateTime"/> <field id="OwnerId"/> <field id="Owner.Name"/> <field
Has anyone run into this error before? I have a UI model (V1) that is giving me an error:Models and NewLifeCycleEvent__Params have conditions that reference each other. These conditions may be set to inactive because the data has not been loaded yet from the referenced model. I’ve never seen this before. It’s a UI model so it has no conditions on it. I have other models that are conditioned off of field from another model for fields in my UI model, but I don’t see how they would be referencing each other. What’s going on here?
I am likely overlooking something stupid here, so be kind… Using NLX with PostgreSQL In the design system, I have a child under field that inherits everything except for the background color. On the form, I have a field display logic style variant pointing to the design system child. The result is that it changes the background color correctly, but it also changes the font size, resulting in a different height. Please see attached screenshots. Any ideas what I am doing wrong? Thank you in advance.
Ever since moving to V2 I’ve missed this capability.
Skuid currently do not evaluate the Required fields if they are inside of a collapsed Accordian section, is there any action that would open the Accordian sections on the click of a button and display error messages on the Required fields to the users? Any suggestions would be of great help.
Hello Community! I’ve been trying to lean into formatting and styling for several of my Skuid pages and am running into some common errors that I’d love to get some direction on. My columns always appear close to the margins of the screen, and as I expand the screen, they get further apart. I’ve tried using the ‘Justify Divison’ value of ‘Space Around’, but without the expected result. How can I go about eliminating these spaces and default my content to add white space around the edges, rather than the middle of my page? Any direction is greatly appreciated - thanks in advance!
We have a requirement where we want to validate the page and display errors (if any) on the page without saving the model. What would be the best way to achieve this?
Is it possible to iterate child relationship items using javascript for a row in a model that has child relationships? Looking in skuid.$M(‘ModelName’).data[rowNum] it doesn’t appear that there’s any reference there to an array of child relationship objects, and I’m not finding anything in the SKUID documentation about this as well. I’d imagine that being able to access the array of child relationship items in javascript is a beneficial ability and should exist in some form. Any assistance is appreicated. Thanks!
I’m on Skuid 15.3.6 at the moment. Trying to dig into the List component to see if I can ‘select’ an item so it shows as selected, like if you click on it. Looking at Using Skuid with Javascript: A Primer pagehttps://docs.skuid.com/v15.3.6/v2/en/skuid/javascript/javascript-primer.html Working thru the page it goes off the rails right at “Create a test page”, having you do things that, at least I’m, not finding in my copy of Skuid. New Page doesn’t have Next Step, or Starting point with Use a page template Making a test Skuid page, and continuing, I can type skuid in the console, and the skuid object is returned. The primer then says to type skuid.model.map() into the console and " Skuid will return an object that has all of your model IDs as its properties, with the model data as values of those properties." I just get an error VM49730:1 Uncaught TypeError: Cannot read properties of undefined (reading ‘map’) at :1:13 Is there something I don’t have enabled? or just obsolete docs lis
As per Subject. I have an issue with the current version of Skuid on a client’s org where a model action for “Requeried” is triggered on page load even though the model is not set to “Query on Page Load”. The installed Skuid package version is 12.2.12. Does the latest release still contain V1? Any plans in the future to exclude V1 or to discontinue changes/support to V1? <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="false" createrowifnonefound="false" datasource="salesforce" sobject="Account"> <fields> <field id="Name"/> <field id="CreatedDate"/> </fields> <conditions> <condition type="param" enclosevalueinquotes="true" operator="=" field="Id" value="id"/> </conditions> <actions> <action> <actions> <action type="blockUI" message="Mode
I have a picklist called payment frequency with three values (weekly, monthly and annually). I want these values to render conditionally based on the value of another picklist called product. I’m assuming this will require custom field renderer (based on this thread) so I’ve created the following snippet just to see how things work. I haven’t added the logic to check the product field’s value before pushing values in picklistEntries just yet. var field = arguments[0], var value = skuid.utils.decodeHTML(arguments[1]); var picklistEntries = field.metadata.picklistEntries; picklistEntries.length = 0; picklistEntries.push({ value: 'MONTHLY', label: 'MONTHLY', defaultValue: false, active: true }); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); When I load the page with above field renderer, I get the following error: I’m not great at JS so it’s possible that I’m making a silly mistake somewhere. Also, the page on which this field resides is a record creation
I can see how to build charts grouped by week number. The chart shows the week number, but most people do better withing seeing the date range of a week. Is there a way to display the date range for the week on the chart? If I can’t fix the chart and have to build table drawers that summarize data by week, is there a formula to get the first date of a calendar week and the last data of a calendar week?
Is it possible to ‘pre-select’ an item in a list, so it displays as selected on page-load? I’m making a console screen for campaigns with list on the left, and a page include on the right (like on the Skuid Skool “Battle of the compponents: Deck vs List vs Table - Level 2” The initial page-include loads the model first row, and I’m looking to have the corresponding list-item be selected, as it will be when the user selects another one. My expectation is it’s a line of JS, but as far as I can tell for v2, the JS docs aren’t available. Thanks
As per title. {need more text here to accept body 😂}
Here is my SOQL: SELECT Id,Cross_Section__r.Name,(SELECT Id FROM Cross_Section__r) FROM SAS_Product_Type__c Here is the error: Cross_Section__r.Name,(SELECT Id FROM Cross_Section__r) FROM SAS_Product_Type__c ^ ERROR at Row:1:Column:49 duplicate field selected: Cross_Section__r Looks like the Child Relationship Name of Cross_Section__r and its parent object of SAS_Product_Type__c and the Lookup field of Cross_Section__c on SAS_Product_Type__c are being flagged as duplicates. The Cross_Section__r child records is where we record each section of a cross section on the SAS_Product_Type__c with lengths and angles, whereas the Cross_Section__c lookup is to the File object for attaching an image of the cross section. I found a post about without and answer. So I answered it. 😃 Salesforce Developers Forums DeveloperForce
Is there any limit on how many lookup field there is in one table? For some reason one of the lookup field I have is not working as expected in a table.
So back in the day, I remember doing ‘console’ screens in Skuid v1 with a list/table on the left and page include on the right. Clicking on an item in the list/table updated the page include to use the id of the item that was clicked on. I looked at the Skuid Skool Page Include course, and it’s not-helpfully always using the hard-coded first row of the model. There’s no interaction on the ‘main’ page which influences the included page. How do you get the page include to ‘draw’ with the selected row? I setup a click interaction for the template field in my table, but now I have two problems. {{Id}} is always getting the same value, and I can’t figure out how to ‘send’ it to the page include. The page include is setup with a Id=(param}Id condition on the ‘main’ model. I was expecting the Interactions to have an option to update the page include or such. I tried adding a “Run Page Include” action on the template field interaction, but there’s no option to pass the parameter. (Not that I
Using V1 on Dubai. I have a child relationship template field in a table that uses merge syntax to display an {{Amount__c}} from the child object. This is cutting off decimals in the amount for some reason when displayed. Why does it do this? How can I get it to not cut off the decimals here? If I use three braces {{{Amount__c}}} it shows the decimal properly, but I lose currency formatting so I’ll see 1000.25 instead of what I want to see: $1,000.25 I don’t see a reason why it’s cutting off the decimals for currency items that have 2 decimal points. This feels like a bug.
As per Title. Anyone have an answer for this?
Looked over the docs and community without any luck.
Unable to login as a user with SF “Platform Starter” license. They have the Skuid Viewer permission set, access to the lightning app, and access to the Lightning Page Tab via the profile. Been awhile since I’ve seen this screen. Any clue crew?
We have a Property object tab in Account. There is a lookup field in property called county and state. In salesforce page, these 2 fields have values but in skuid it doesn’t show those value. We are able to put in value on the field but it is not saving. Once we saved the changes the value we put on those fields are not saved.|
So maybe something I’m overlooking, but… I’m working on importing some things to a custom record type campaign. (Importing NPSP Allocations to a ‘project campaign’) I’m also trying to add the accounts(and/or contacts) who made the donation (which makes the allocation) to the project campaign. I have a skuid Model setup for CampaignMember, but I can’t add the Account field to the model. It just doesn’t show up in the list of available fields to include in the model. I have previously enabled the Salesforce “Accounts as Campaign Members” feature. The Account field shows up in the Setup->CampaignMember->Fields, as expected. Security for the account field has it visible to all profiles. ( Set Field-Level Security in the Account Field in the Campaign Member Object) Presumably I’m missing something simple, or perhaps we enabled Accounts as Campaign Members AFTER we added Skuid to the org, and that’s not set something correctly?
Is there any tutorials on Row Actions / Mass Actions? Skuid Skool doesn’t seem to have any. Documentation searches all seem to send me to v1 javascript which don’t apply to v2. The documentation seems to assume things which I’m either not understanding, or aren’t documented. I’m also bumping into lots of dated or dead links related to this. Search the docs for “Mass Actions” and the first link is context and its a dead 404 link. I think some of my problem is understanding what, really, does context mean? From: Context — Skuid v15.3.5 Documentation Mass actions Mass actions allow an end user to select one—or more—rows and perform an action on them. ?>Each selected row becomes context for the action. That doesn’t mean what I thought it meant. I was expecting to be able to reference the model.field in actions, and it would have the data for the ‘current’ selected row. Instead the model is always the value for the current first row in the table. From another community question answe
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.