Learn about the latest Nintex capabilities at New at Nintex
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
We have a master-detail relationship that we’re wanting to display in two tables. Basically the idea is to have one table with the master records and when one of them is selected it displays all of the detail records related to that master in a second table. Anyone have any experience with this or done this sort of thing before? We’ve looked at drawers but ideally we’d like to display the info this way instead.Thanks,-M
Hi everybody, I’m facing the issue: Blank screen on page load, with the error below. This error occurred on custom profile. Although I set View access to related objects. Please help me.
Hello,I have a table for a custom object called Checklist_Item__c. We have a custom lookup field on Tasks that looks up to Checklist_Item__c. In the table, for each Checklist_Item__c record I would like to open a drawer that has some analytics on all of the Tasks related to that Checklist_Item__c. One of the metrics I want is the average time to complete tasks for each Checklist_Item__c. This is captured in a custom formula field on the Task called Age. So basically when I open a drawer for I want the average Age of all closed tasks related to that Checklist_Item__c. I have tried this two ways: The first is a template field right in the drawer that displays the average Age aggregation in the Task Model. This will work for the first drawer opened, but once I open another drawer, the value from the first drawer will change to the second. The second way I have tried this is displaying the field in a table/field editor with a Context rule that says only display info when Task.Checklist_Ite
I’ve seen a number of other posts with a similar issue (e.g. https://community.skuid.com/t/passing-url-parameters-to-a-page-include). They are however much older, and I believe this error to be introduced in the latest version as I’m only experiencing this now. To Elaborate: Providing a query string to a page include like this: or this or this All yield the same result, that value NOT being available as {{$Param.example}} in the page include. What’s more interesting is that if I manually add ‘&example=test’ to the parent page (the page that includes the page include)'s URL, the page include now registers the value in the $Param merge. It is as though the Merge syntax on the include no longer references the included page’s url. Has something to cause this been introduced in 8.15.17? What’s interesting is the distinction in the url that is ‘GET’ requested. https://skuid.na11.visual.force.com/apex/ skuid__ui?page=Page -> Standard Pagehttps://skuid.na11.visual.force.com/apex/ inclu
We have a visualforce page that displays a skuid page. This works without issue for System Administrators but when trying to use the page on our other profiles we are receiving this error “Formula Expression is required on the action attributes.” <apex:page standardController=“Tax__c” recordSetVar=“c” extensions=“skuid.Redirects” action=“{!redirect}?page=Home_Page_Tax_Department”> </apex:page> Has anyone had success troubleshooting a similar problem?
I’ve been working with Shippo, which offers a shipping API for creating labels, tracking, and address verification. I set it up a REST interface quite easily, and was able to get most standard operations working well. The problem I have is when it comes to multi-piece shipments which requires that I post an array of ‘parcels’. Let me explain. Shippo has you create a To Address object, a From Address object, and a Parcel object (with dimensions & weight). Once created each is given an Object ID. To create the shipment you just supply all three object IDs and the shipment is created. Here is what it looks like basically. Pretty simple. But if you want to send multi-piece shipments you have to supply an array of Parcel object IDs, formatted like this [‘object_id’, ‘object_id’]. No problem creating that string, but there is an issue with the JSON generated from Skuid. Here is what is required. { "object\_purpose": "PURCHASE", “address_from”: “4f406a13253945a8bc8deb0f8266b245”, “addr
We would like to conditionally render one of two hyperlinks or a blank space in a Table field, based upon the value from a Model set up strictly for this purpose. It looks like we’re having an issue where the browser “Cannot read property ‘displaytype’ of undefined”, but I can’t quite figure out where my data calls are going wrong – or whether there might be another issue. var field = '{{$Model.AOPStatus.fieldsmap.name.AoP_Status__c}}', value = '{{$Model.AOPStatus.data.0.AoP_Status__c}}', stringValue = value.toString(); $ = skuid.$; switch(value) { case 'Ready for Review' : stringValue = '<a href = "/apex/skuid__ui?page=SSA-Counselor-Approval-of-Participation">For Your Review</a>'; break; case 'Ready for Review' : stringValue = 'Approval Completed'; break; default : stringvalue = null; break; } skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,stringValue);
I noticed a glitch in my query string passed for creating new contacts. When the billing address has ‘#’ in it, the user gets the “Inked” error message. For example, the street address “2799 WEST GRAND BLVD” works fine; however, 430 BEDFORD ST #100 MA does not. And I narrowed the problem down to ‘#’ being the issue.I’ve attached my Query string below but does any have suggestions for how I should move forward? I could always put limitations on entry for symbols but i’d like to not limit users whenever possible. <br>AccountId={{$Model.Account.data.0.Id}}&amp;MailingStreet={{$Model.Account.data.0.BillingStreet}}&amp;MailingCity={{$Model.Account.data.0.BillingCity}}&amp;MailingState={{$Model.Account.data.0.BillingState}}&amp;MailingPostalCode={{$Model.Account.data.0.BillingPostalCode}}&amp;Phone={{$Model.Account.data.0.Phone}}&amp;MailingCountry={{$Model.Account.data.0.BillingCountry}}
I’ve seen examples of before render snippets used to control attributes of a chart, but it does not look like chart height is one of the available attributes.We have a bar chart used to display activities of various types for each rep. I’d like the height of the chart to be dynamic, so that it doesn’t hide the names of the sales reps (chart category) when too many are displayed for the static chart height.
I get a blank value in return. Same thing with DAY_OF_WEEK(NOW()). Can you not nest functions?Thanks,Seth
I am trying to validate two different fields in skuid Forecast table i have created.i need to get an warning message on expected budget if does not match with the forecast amount.
I am wondering if skuid has sample questions or practice test for certification?
Progress Indicator Add on works really nicely, except I need to use 2 tab sets (one tab set inside another tab set) in a single Skuid Page. This becomes problematic because the progress indicator reacts to both tab sets. What can be done so that the progress indicator is only affected by the first tab set?
I am using the below script to select all rows in a model and create new rows in a different model. However it is only selecting the initial page load number of lines and I need all rows that would be returned. Is there a way to do that without setting the “Mass number of records” to blank?For example the “Mass number of records” field would be set to 20 but the script would pull in all the records the model should have based on the conditions. If I leave the “Mass number of records” blank we run into the issue of heap size errors.Script: var $ = skuid.$;&nbsp;<br>var models = skuid.model.map();<br>var inventoryLocation = models.LocationInventoryPosition;<br>var cycleCountLines = models.CycleCountLines;<br>$.each(inventoryLocation.data,function(){<br>&nbsp; &nbsp; var row = cycleCountLines.createRow({<br>&nbsp; &nbsp; &nbsp; &nbsp; additionalConditions: [<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &
A couple folks who were previously able to edit Skuid pages were unable to do so this morning. They got an error message saying, “You do not have permission to create or modify Pages that contain JavaScipt Resources. This capability requires the ‘Author Apex’ permission on your user Profile.” Is that a new requirement? Or has that always been required and maybe someone altered the profiles on our end.
Issue with cross/clear function on a lookup field. User populates the lookup field and then clear it using the cross function highlighted below and hit save, the cleared value reappears in the lookup field and the record gets saved even though the field is a required field - Steps to reproduce - Create a table and drag a lookup field which must be required field. Populate some value using the lookup dialog. Clear the value using the cross function. Try hitting save, the cleared value will reappear and the record gets saved.
I’m trying to figure out why my field editor values (both model fields and templates) are being cut off in a pop-up window (see first image) There is no CSS assigned to the popup, the panel set or the field editor fields/templates. This is happening on all components within the popup. This is what the Skuid editor looks like for this component.
Hi, I have this page that does not work only for 1 specific profile. Looking in console i see error: Uncaught TypeError: Cannot read property ‘indexOf’ of undefined(…) When looking at details of error in console, here pretty print version: Would anyone know why i’m getting this? Thank you
Hello All, I have a simple use case. I am using a row Actions to popup action. I want some of the records to be by default selected based on the some criteria. I tried to use javascript but I am not getting Item collection of the popup items… Any help on this would be hardly appreciated.
Hello All, I want to run some javascript code after the UI is rendered on the page. UI is nothing but a simple grid with data from single model. Please help Thanks,
I built a read only table with no global or Mass Actions and only one row actions and my table has checkboxes to the left of the table and when you click on it a ‘Action’ Button pops up. The row The row action is a drawer. Can someone tell me what the action button is and the best way to remove it from my table. I also would like to remove the checkboxes too. Thanks, Sierra
Hide when does not work when selecting and deselecting the condition quickly.Created a new page using a blank canvas. Added the Case model and only 2 fields. Field1 and Field2Added a Field Editor to the page, deleted a column and then added a column set to the remaining column.Added Field1 to the first column and Field2 to the secondApplied rendering to Column1 if Field2=Blank and applied rendering to column 2 if Field1=blankNo other formatting or rendering on the pagePreview and if I select the checkbox Field1 and immediately uncheck it, we see the same behavior as on my original page. Column 2 does not render. If I wait 2 seconds, it does. Wondered why we did the columns in a column instead of columns in a field editor, so I tried the same test without adding the second column set and the same behavior. Check and uncheck quickly and the render does not happen.
Hello all! I am trying to replicate an OnClick JavaScript button we have in Salesforce to work in Skuid. The OnClick JavaScript button in Salesforce runs apex, then opens a create event page with the Assigned To field populated from the logic in the apex code. We are having trouble recreating this in skuid. The workaround I currently have in place:1. A row action that runs a JS snippet, passes model values from the row you initiated the actions for, then opens the create event page in salesforceThe issue with this workaround is that it takes our users out of the skuid view and they lose their place in their workflow. The ideal process would be clicking a button that runs multiple actions: 1. Runs the JS snippet with apex logic2. Launches a Wizard component to create an Event, with a field in the field editor of the wizard populated from the logic launched in step 1Unfortunately I am not JS savvy and I cannot figure out how to pass the JS/apex values to the skuid field. I found this tut
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.