Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi, Would anyone know of a way to visually hide all rows from a table and just show header and summary? (summary should still summarize, those invisible rows)
Hi, I just created a skuid page to display all the articles from the model Our_Article_kav. i added a table component and had a the following condition… when i preview the page, i am getting the following error. Can anyone help me out on how to add Skuid pages on Salesforce Knowledge?? I really don’t understand where am i going wrong. Thanks
I do not want to change redirect URL for the several environment once the changes are deployed to UAT or Production.How can I access the salesforce instance URL through skuid?
Hi, I’m able to successfully call an Apex Action (Invocable Method), but is there a way to capture the response? I don’t see anything in the “Run Custom Apex Action” fields that account for that, but I’m wondering if there is a model reference or something that can be used to take the response (outputValues) and put it into another model field… Thanks, Paul
Page include is not working when we use a skuid page in LEX. We are getting that error in console : **Uncaught TypeError: Cannot redefine property: put ** Same page is working fine in Salesforce classic. To replicate the same issue please follow these steps: 1.) Create a skuid Page : PageIncludePage <models></models> <model id="User" limit="1" query="true" createrowifnonefound="false" adapter="salesforce" type="" sobject="User"></model> <fields></fields> <field id="FirstName"></field> <field id="LastName"></field> <conditions></conditions> <condition type="userinfo" value="" field="Id" operator="=" enclosevalueinquotes="true" userinfotype="userid"></condition> <actions></actions> <components></components> <skootable showconditions="true" showsavecancel="true" showerrorsin
I have created custom renderer to display a dynamic values in a multiselect picklist ui only field.params.options.type = “CHECKBOXES”; params.options.type = “CUSTOM”; picklistEntries = ;picklistEntries.push({ value: ‘0’, label: ‘AAA’, defaultValue: false, active: true });picklistEntries.push({ value: ‘1’, label: ‘BBB’, defaultValue: false, active: true });picklistEntries.push({ value: ‘2’, label: ‘CCC’, defaultValue: false, active: true });params.metadata.picklistEntries = picklistEntries;skuid.ui.fieldRenderers.MULTIPICKLIST.edit(params,value);Now at some point if i need to access the label (AAA, BBB…) for this field, how can this be achieved as accessing the field is always returning the value.
I came up with the following jQuery statement that highlights an event in the calendar:skuid.jQuery(".nx-cal-event:has(a[href=‘/00U0G00000k2jb0UAA’]) “).addClass(“highlightAppointment”)this is very specific and it only selects an event that has a child a tag with an href to a particular SF Id. This works great when I am using the console. It highlights the event.However there are two issues:1) Whenever I do something with the calendar the highlight goes away.2) I am trying to add the same command when the calendar is first loaded but I don’t get the same results. In fact nothing happens. $(document.body).one(‘pageload’,function() { CAL.ChangeView(“week”); skuid.jQuery(”.nx-cal-event:has(a[href=‘/00U0G00000k2jb0UAA’]) ").addClass(“highlightAppointment”); });Any thoughts. Thank you.
Running 8.15.10. Just noticed this week that when I click the preview ‘flask’ row action icon for a page that has url parameters, nothing really happens:
Hi, I want to show the Entitlement History related list on the Entitlement Detail page. I had table with Entitlement history as the model. By default it is displaying all the activities within the Entitlements history object (I.e. all the history related to all the entitlements). But i want to see only the history related to the Entitlement that i am looking at. what condition should i have on the Entitlement history model so that i can see only the history related to a particular entitlement. I tried different conditions but no luck. Can anyone help me out with this issue?
I added a visualization to one of my pages. It is just a standard bar chart. If I add any series to it, I can no longer save the model the chart is connected to. It locks up chrome completely. I have tried process of elimination to attempt to identify the problem, but If the chart has no series defined, the model saves and if any series on any field is defined, the model wont save and Chrome locks up. Anyone have any experience with this?
I need some guidance on subqueries. Can you use merge syntax in a subquery? I have an invoice line object connected to a Rebate Line object via the item object. I want a subquery condition that looks at the invoice date and see if it is in between the start and end date found on the rebate line. I get the below error:1. An error occurred while attempting to perform the following SOQL query: SELECT SCMC__Invoicing__r.SCMC__Invoice_Date__c,SCMC__Item__c,SCMC__Item__r.Name,SCMC__Applied_Rebate_Amount__c,Id,CurrencyIsoCode FROM SCMC__Invoice_Line_Item__c WHERE (SCMC__Item__c in (SELECT SCMC__Item__c FROM SCMC__Rebate_Line__c WHERE (((SCMC__Rebate__r.SCMC__Start_Date__c >= SCMC__Invoicing__r.SCMC__Invoice_Date__c)AND(SCMC__Rebate__r.SCMC__End_Date__c <= SCMC__Invoicing__r.SCMC__Invoice_Date__c)))))AND(SCMC__Applied_Rebate_Amount__c != null) LIMIT 21 Error:expecting a colon, found ‘SCMC__Invoicing__r.SCMC__Invoice_Date__c’
Using a "long text field". When copy/pasting on computer or Microsoft tablet, we have no issues with formatting. When copy/pasting from iPad, the text is being formatted to larger font. Displays as larger font when later viewed on computer or Microsoft tablet.
Terrible and strange problem.Why would the data from one model be replacing the data from a distinct model when i attempt a save?I’ve only been able to reproduce this issue with these two models, but I’ve had users report the ‘disappearing name’ in other circumstances as well. If it helps, here’s the snippet behind that save button: 'saveAllSnippet': function () {<br> var modelsToSave = [],<br> modelsToExclude = ['AddTests','ProcessLog','ChangeTracker','ShowTabs','UI_Model','DefaultTo','ChartAudit'],<br> dfd = new $.Deferred();<br> $.each(skuid.model.map(), function(){<br> if (this.hasChanged &amp;&amp; (modelsToExclude.indexOf(this.id) === -1) &amp;&amp; this.preventUnloadIfUnsavedChanges) {<br> modelsToSave.push(this);<br> }<br> });<br> $.when(skuid.model.save(modelsToSave))<br> .done(function(result){<br> console.log('All Models Saved.');<br> dfd.resolve(result);<br> })<br> .fail(func
Hello,The URL Parameter & model conditions had been working well to navigate from a list of records, to one specific record. However now I’ve moved the Skuid pages onto our community site, and they are all force.com URLs, the URL parameter has stopped working.All of the pages are visualforce pages with the skuid include function.E.g. this works (but brings up no data)https://gdsgroup.force.com/EPik/apex/EPP_ProjectBut this goes to the force.com error pagehttps://gdsgroup.force.com/EPik/apex/EPik_Meeting_Detail&Id=a1i24000001hYoaAAEWhere as within Skuid, this works perfectly:https://skuid.eu5.visual.force.com/apex/skuid__ui?page=EPik_Meeting_Detail&id=a1i24000001hYoaAAE Any ideas where I’m going wrong? The Skuid page is identical.Thanks!
When I create a new model, I am going getting the option to use Salesforce. I want to be able to use a REST service. However, it seems that this is no longer an option for me. Any ideas what could be causing this issue?
I have a salesforce community using a skuid page as the homepage. When I try to navigate to another skuid page it works for me (moderator) but asks the community member to log into our sales org. How do I correctly create additional pages, and link to them? I’ve tried creating a visual force page but didn’t really understand how I was supposed to link it up.I think the issue is my page is within our Salesforce instance (EU5) rather than the community page (gdsgroup.force.com) but I just can’t figure out how I create the community page and link to skuid.
I want to display a field in a table that has a hyperlink written into it. similar to this: “Here is some information about <a id=“oppLink” href = ???>this; record.” How do I get that to display with the actual hyperlink in my table?
We just installed 8.15.15 (from 8.15.9) to fix the chatter issue. Now our text area boxes in edit mode have shrunk smaller than 1 line, and our users can’t see their text that they have typed. These are fields that have “Rows to Display” set to null. When I change the Rows to Display to 3, everything looks fine. I tested and see the same issue in Chrome and Firefox. It is almost like the null is now considered a 0, when it used to be a 1. I know it sounds like an easy fix to just go and add a value to the Rows to Display, but it isn’t that easy when you have a zillion Skuid pages like we do… In testing this, I added a value, saved the page, then tried to delete the value. Now it won’t let me! It says the value must be > 0. Except all the my existing text areas are null/0.
Hi! I am having some issues with the Mass Actions button on a table. I have 2 options (“Mass Update Selected Rows” and “Close No Case Necessary”) When I select multiple records in the table, the only option that shows is “Mass Update Selected Rows”. There is a drop down arrow, but no options become available. I do not have any rendering conditions on either of the mass actions. {{Account.Health_Score_Label__c}} + " : " + ROUND({{Account.Health_Score_30__c}}) other No Case Necessary other No Case Necessary other No Case Necessary NewCase NewCase {{CaseNumber}} NewCase CaseTable OpenCases NewCase NewCase CaseTable OpenCases NewCase &
I have a field render snippet that pushes in picklist values. It is working fine, but doesn’t work in my community.I solved some previous community issues by cloning skuid VF pages - like for the ExportData function.This makes me suspect that my community user may not have access to the skuid.utils.decodeHTML but I don’t see a way to grant access (or confirm that they have access.) I use that based on this thread:https://community.skuid.com/t/how-do-i-render-custom-picklist-valuesHere’s my snippet that works for internal users, including when logged into the community, but not for my community user profiles.The users do have access to the contentTags model. Are there any other places I should check for community access? We’ve been using Skuid pages in our community for a long time, so the basics work just fine.var field = arguments[0],value = skuid.utils.decodeHTML(arguments[1]),$ = skuid.$;var contentTagsMdl = skuid.model.getModel(‘contentTags’);var picklistEntries = field.metadata
I have a code that allows me to show/hide a field editor with a checkbox. How do I edit this code for the checkbox to show/hide multiple field editors?See code below:// Run the regular renderervar field = arguments[0], value = arguments[1], $ = skuid.$;// Make sure we’re registered on our model,// so that we can receive changesvar listener = new skuid.ui.Field(field.row,field.model,null,{fieldId: field.id,register:true});skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;var fe, nextFE;var getFieldEditors = function(){ if (!fe) { // Get the closest Field Editor fe = field.element.closest(‘.decision-home-visit’); // And find the next Home Visit Field Editor nextFE = fe.next(‘.home-visit’).first(); }};var doIt = function(val) { getFieldEditors(); // Show/hide the next Home Visit Field Editor if (val) nextFE.show(); else nextFE.hide();};listener.handleChange = function() { doIt(field.model.getFieldValue(field.row,field.id,t
I have a page model with conditions on the Id field and the Name field of the underlying custom sObject. The values for each condition are supplied by URL parameters.When I use page preview, I am prompted for both parameters. The Id parameter allows/requires me to enter a Name value which skuid autocompletes with the associated Record Id value. However, the Name parameter does not allow entry or selection of anything. There is only a prompt where the label is the parameter name but there is no input field.What’s up with this? 🙂
Hi Team,I have a page include in a Tab.Certain fields are not displaying values, if a page is included in Tab of a parent page. When the same child page is loaded independently, all the values are loaded without any problem.Please let us know, if you need anything else.Note:No errors are displayed in console.Thanks in Advance,Chandra.
Hello All,I found couple of ways to access custom labels from Skuid.1. skuid.utils.mergeAsText(“global”,“{{$Label.YOUR_LABEL}}”);2. skuid.$L(‘YOUR_LABEL’,‘someValue’);I am looking for an expert opinion/best practice insights into this point.Which of these above would be great to implement and can anyone throw some light on differences ?
I am new to Skuid and teaching myself the application with the tutorials. I’m in the process of creating a page called LeadQueue. My page consists of model “Lead”. It has a panel set with a queue on the left and a page include on the right. The Page include references another lead page with model “LeadData”. When I preview the LeadQueue page, the queue shows the records successfully on the left side of the panel set, but when i click into an individual record, the page include does not display on the right side. It just looks like it’s loading forever. No error message or anything. Any help would be appreciated. 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.