Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi Everyone, I am a Salesforce Consultant and have a client that uses Skuid, I do not know much about it. I was deleting some fields from the Lead object in Salesforce for them, and noticed I had to remove the field references from the Skuid page too. Along with this I ended up removing a few “Conditions” in some Models. Now the Lead page renders like this: I have no idea what could have caused this but any help is greatly appreciated! Cheers.
estimate values are not pulling on campaigns
Hi everyone!I am a Salesforce Consultant and one of my Clients uses Skuid, so I am having to learn it on the go very quickly!I am having difficulty with a related list.I have added a Table component and Setup the Model correctly, but the list seems to be displaying every record rather than the ones that are actually related to the Opportunity.The Condition I have in place is gaff_Opportunity__c = (Opportunity)(Id) Also how can you order by the most recent date? There is a field called Sent Date and I need the list to be ordered according to the most recent Sent Date. Cheers.
Hello,I’ve created a table with a search box in it, which I want to search all text fields.Additionally, I also want it to search one specific multipicklist, and the related account name.I added a UX only field with a text formula to include the account name as it didn’t search reference fields, and that worked great. However I’ve done the same for the multipicklist as can’t get that to work. I’ve checked & the value appears as I would expect it to, but just isn’t being picked up.Any ideas?Thanks!
Since upgrading to Brooklyn (10.0.1), every page inside of our managed package namespace triggers many ‘Access-Control-Allow-Origin’ errors in the console. Page performance seems to be the same, but I would like to prevent these. It looks like the page is trying to access an OpenSans font inside a resource located in the Skuid namespace. Is there a way to disable this? I am using a basic font for the theme. The errors only show when viewing the page through a VF page in our namespace. There are no errors when previewing the page in the Skuid namespace.
When using createRow or Create New Row through the action framework with the table/first row in edit mode, the new row will not focus on a text field, even if it is the first or only field on the table. If you enable inline record creation, it does focus correctly. Changing the field type to number will focus on the field. Simple example:Sample Page: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models> <model id="UIModel" query="true" createrowifnonefound="true" datasource="Ui-Only" processonclient="true"> <fields> <field id="Text Field" displaytype="TEXT" label="Text" ogdisplaytype="TEXT"/> <field id="Number" displaytype="DOUBLE" label="Number" ogdisplaytype="TEXT" precision="9" scale="0"/> </fields> <conditions/> <actions/> </model> </models> <components> <skootable showconditions="true" showsavecancel="false" showerrorsinline
When clicking a row action on a table of POLineItems model I have another table inside a pop-up to show which row a user is working with. They are both pointed to the same model. I added a Context Condition to the pop-up table for the POLineItem.Id field to match the POLineItem.Id field of the same model. I would think this would work, but no data is displayed in the pop-up table However, if I use a different field, like Part__c it works, but can cause issues as there may be multiple ids of the same part in the first table. I only want the row that the row action was selected on to show up within the pop-up table. Anybody know why this wouldn’t work? The Id field is selected in the model. I know I could load a different model with the selected fields, but I have like 13 models on this page already and that specific model has several UI-Only fields that I’m using for other functions, so I’d prefer just use Context Condition to display the data as I would think this is what it’s for. Any
As mentioned in a previous post, Scale to mobile is great, but if your font sizes in edit fields are not at least 16px mobile browsers auto zoom and it is clumsy with skuid pages that are scaled to mobile. I have one last hurdle. I have a picklist in a field editor. When I set it to the default, the font doesn’t conform to my 16px font size setting in the theme. I can’t seem to get CSS to work either. Consequently, when you change the picklist option, mobile browsers zoom in and it is hard to get it to zoom back out by pinch to zoom. If I switch to radio button, the radio buttons are huge and the layout is weird. These also don’t respect theme settings and I can’t get CSS to work. Any Ideas on a work around?
I keep getting the following message when unpacking the pages from page pack.Generating Support Files: Sending Deployment…
Is it possible to update a UI only field through something like “{{{Increment}}}”Basically I need to be able to keep track of when a certain item gets added and using a UI only field that increases by 1, every time seemed like the most logical way. If this is not the best way I am open to new ideas!Thanks!
In my skuid page, I need to set the mode of all editable components to read-only. Any idea on how to implement this functionality in javascript snippet?
I am new to skuid and I am stuck in one issue. As per requirement, I have to auto populate picklist value on basis of two other picklist values. Example: Suppose we have three picklists A, B, C. If picklist A has a certain value and Picklist B has certain value then Picklist C should be auto populate with the specified value. For this scenario, we can have two approaches Run a snippet on change of picklist A and B.(but it is not good in the condition where I have to alter conditions and I have many conditions like that). Query on Model(Salesforce Object).We will create a custom object in Salesforce and correspond that we have records. Now I have to query those records in skuid dynamically. please let me know what is suitable in the scenario? Thanks in advance
When I was using skuid 9.5 The row actions on a table look good. Not extra redundant label text. However, after upgrading the Skuid 10. All the layout is broken and ugly. Any idea?.
I have a chart where you can click on each segment and it's supposed to filter the model for the popup table to just show data for that segment but it's not working.The action for the segment is -Activate & Set Model Condition (model=ContactDetails, condition= [ClientLevelMaster__filter], value= {{{clientLevelMasterc}}}-Query Model-Show PopupAnd the model (ContactDetails) has condition [ClientLevelMaster__filter] is ____, filterable but off by default.The drilldown table only shows one of the levels and doesn't update.
We built a custom lead list view & lead detail page in skuid. Is it possible to add Live Agent to these pages?
A user recently brought it to my attention that apostrophes are not rendering correctly. Instead of the correct character, it inserts “&#39” instead. Based on what I’ve see in this article:https://community.skuid.com/t/field-renderer-causing-apostrophe-to-turn-into-39the fix is to insert .getFieldValue infront of the field reference to get the correct value. However that is already present in the Custom Renderer. Here is the code:// A custom field renderer for Client fields. Links user to the Client page within the Wealth tab, while still allowing field to be editable if in edit mode.skuid.snippet.registerSnippet(‘ClientLinkRenderer’, function(field, value){ var model = field.model, row = field.row, clientName, clientId, clientLink, elem = field.element, modelObject = model.objectName; console.log(field); // Based on the model’s object, use different fields for the Client Id and Name switch(modelObject) { // Client (Account) model cas
I was having trouble with getting a button to render correctly after having an action on another component update a field, so I decided to use a Branch to run a “Validation” before continuing. However, the Branch only works if I don’t add any actions to the branch. As soon as I add an action it ignores the branch and does the “Else” actions which I don’t want it to do. Figure 1 is without an action on the branch. When I have it like this and I click “Next Step” it works correctly, but as soon as I add an action to the branch using the “Add If-True Action” button, it skips the branch (even know it’s still true) and does the “Else” actions. Hard to show the problem without recording the Wizard that its performing on. But, I can’t see any logical reason as to why it would skip the Branch when I don’t change the formula at all and just add an action. Anybody else have this issue?
Do any of you know any non-profits centered around family supports who use Salesforce/Skuid and would benefit from my expertise at no charge? Closer to home in Ottawa, Ontario, Canada the better. 😉 I am compelled to do so as I’ve benefited greatly from local resources in parenting/child supports. Looking to give about 5-10 hours per month.
I’m working with a formula field on one of my organizations custom objects that is used as rendering criteria and referenced in the pages javascript in other areas. The problem I am having is that even though it evaluates correctly as part of rendering criteria for page components in my on pageload javascript snippet is shows up as undefined.Has anyone encountered this before? How can I access that fields value in the pageload snippet without recreating that formula?
I have created a popup to capture a new record. In the Model, I have a Condition to tie the record to a specific record type ID because there are multiple record types in this object. When I create the new record, the correct record type ID shows on my form. However when I attempt to save it I am getting an error message: “Record Type ID: this ID value isn’t valid for the user”. I have verified that the user profile has access to this record type. Any ideas why I’m getting this error?
I’m configuring the “fields to order records by” field to apply a sort order on a date. However, on the field I am sorting, most of the time it is blank. When I view the table, the blank fields are sorted before the fields with a date. I’d like to sort it so the dates are at the top of the table.I believe I read somewhere in the community that there is a way to sort NULL values to the bottom, but I can’t seem to find that post using search.Anyone know what I should enter into the “fields to order records by” field?Thanks,Andrew
Hello,&nbsp; I created a link to a visualforce page by inserting it as a redirect to following url /apex/SchedeChiamateIt work for community users but didn’t work for Saleforce users. I try also apex/SchedeChiamate and {{$Site.CurrentSiteUrl}}/apex/SchedeChiamate}} but didn’t work.
Here is some context that hopefully helps explain this (there are a lot of layers): I have a parent object, we’ll call Marking Period, representing school semesters and a child object we’ll call MP Details, representing courses, grades, attendance, etc. As in the below screen shot the Marking Period table has the MP Details in a drawer component (the tab set pictured below is within the drawer). Within each tab is a table of MP Detail records, each of which is based on one of four models tied to MP Details. Three of the models (Grades, Attendance, and Behavior) are basic models; the Summary model is an aggregate model that summarizes the other three models. Each of the three basic models – Grades, Attendance, and Behavior – have a model action to requery the Summary model on save. Amazingly, this works when the models are processed server side – e.g., I can enter and save Grades records, then click the Summary tab to see the updated aggregate – but when I switch to client-side mode
Maybe this is expected behavior given how table manual sorting works, or at least how I think it works (requerying the model), but not sure… I have a table of child records within a drawer component. The table is linked to the parent via context condition, I am using get more rows to query the child records in the before load actions of drawer component, and all that is working fine. Having multiple drawers open correctly shows the child rows for each parent row. However, when I click the header of a sortable column on a table within a drawer, the re-sorting removes the rows from the other open drawer(s) and I have to reload the page to get them to show again. Should that be happening? I’m on Skuid version 9.5.6. Thanks!
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.