Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
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
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 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?
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,  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!
When there are multiple row action options on a table component, how can I make them display in a horizontal way, instead of vertical, in the latest Brooklyn release?
I have an existing Model tied to a Risk Assessment object in SF. This object will also be used to store records for a Relationship Review. I have a tab set with a tab for the Risk Assessment which allows users to create new RA records and also contains a table that shows the RA records. I would like to create a new tab for the Relationship Review that is like the RA tab However when a new record is created I want it to default to the Relationship Review record type and also have a table that shows only those records. Can I do that with a single model or do I need to create a seperate model for the new tab?
One of my Salesforce customers is having issues with Skuid getting stuck on “Saving” There is no error message. Any ideas how to troubleshoot this problem?
I have a problem in Skuid I have to update a refrence field on behalf of two picklist fields value’s For Example: Matter Type A + Office = Consulting.Matter Type A and Office are picklist fields and Consulting is refrence field and field rerenderer in Skuid Picklist.Please help me out Is this scenario possible in Skuid.Thanks,Nitin Aggarwal.
Confusing title, so I will try and be detailed. Basically when a user inputs information, we don’t want them to advance to the next step unless there is a child record. For example, Lets say you were buying a charging plug for your phone. You need the cord that goes with it or else its useless. Our problem would be that you could need anywhere from 1 charging plug to 5. We do not want our users to be able to advance to the next step unless they have selected the “cord”.My initial thought was to use a roll up summary field and count the child records and if it was greater than 0 for each row we could advance, but given that if you only have 1 row in the model, rows 2 - 5 are going to equal 0 and that wont work.So my next trial is a set of 5 branch statements, but considering the amount of actions on the “Next” button, this is a considerable lift to use 5 separate branch logic statements to check how many rows are in the model. Does anyone have a potentially easier way (assuming that ra
Hey everyone, I have an iframe at the end of a wizard that is a VF page and a set of VF components within it.Currently the page is more “static” than I would like, because we allow our users to go back through the wizard and make changes, but when they navigate back to the last page the VF page does not rerender.Has anyone tried to initiate a rerender from a skuid action?Thanks, Richard
I’ve just started up the Skuid trial on my Salesforce Developer account and have been following this guide here: https://docs.skuid.com/latest/en/skuid/tutorials/pages/tab-page.htmlHowever, the page does not want to save whenever I change the model to my custom object or add any components beyond a page title. The save button is even grayed out although sometimes I am still prompted with unsaved changes when trying to leave/refresh the page. The page preview also isn’t updated when I just ignore this. Is there a step I missed somewhere or something I’m doing wrong here? I’ve just been following the guide.
I have a table that is displaying data as it should, but one of the rows is minimized and does not show the data needed.
Is there a recipe to have my skuid page ONLY “RM1_Leo_C_Level” show after I sign on to Salesforce. I do not want ANY indication that salesforce even exists. Like a “Site” page. A video would be great.
When using the scale to mobile option for a page, it creates a poor, sometimes unusable, experience for skuid popups. They bleed off the page and you can’t scroll. Two options:1) as part of the mobile scaling conversion, convert all popup widths to 100%.2) Make skuid popups open in a new window on mobile browsers
This is probably just a Friday miss on my part but I’ve seen the UI-Only Models for 10.0 but I’m not at all understanding how Reference types are used for UI only fields. The closest I see is “Referential Data Access” but those steps look nothing like the Reference UI.I haven’t figured out if these UI only fields solve my use case, I think so, for a Java snippet I now have but want to remove.Essentially we have picklist on multiple Account fields. (field1, field2, etc.). When a user is adding a new Contact I want the picklists from field1 to show. User then selects a value from that which is stored on the Contact. Same for field2, etc.Once I can get the data to display and be selected by user I’m probably ok using the action framework to store the data on Contact. But displaying is perplexing me.
Is there a way to see the old value of a field just before update in javascript. The params passed to a snippet after field update list the new value but I do not see a way to access the old. Similarly to trigger.old and trigger.new, but with just one value.I also did not see a way to do it with a custom skuid.event subscription. Example:Field was changed from 10 to 15. I would like to access the old value of ‘10’
I have a field that is conditioned to show when a reference field is null. I open the collapsible wrapper and it works. If I close the collapsible wrapper and open collapsible wrapper, the conditioning no longer works.https://drive.google.com/file/d/0B409lhd9sYDcT0VIMmcyTW9xaGM/view?usp=drivesdk
Hi,when I query a model the deck based on it stop showing all cards.Thew footer of the deck shows correct number of records (like Showing rows 1-1 fo 1) but the cards disappear. Any idea?
I’m trying to create a custom theme by picking :Mobile Classic" as base theme, but the theme composer page is not loading up (see snapshot). I’m using Mac, Skuid v10.0, Google Chrome browser.
Hi, we have Skuid license on some of our users, but not on all of them. When we create a visualforce page to override the Edit opportunity, the people without skuid license have problems with the standard salesforce inline edit in the opportunity detail. In their view of the opportunity detail, if they want to change a single line, they have to click on the edit all button. Here is the skuid page code: <apex:page standardController="Opportunity" extensions="skuid.Redirects" action="{!redirect}?objectType=Opportunity&amp;actionType=Edit"> </apex:page> Any suggestion on where the problem could be ? Thanks a lot, Giovanni
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.