Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
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!
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.
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 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!
Hi We are currently trying to access the Paypal REST Api. Everything is set up according to their documentation. (https://developer.paypal.com/docs/api/) As a test, we tried to do a simple GET to list the payments. /v1/payments/payment The login popup opens, and the login succeeds. But afterwards, Skuid is showing an error saying that it could not get the authenticating server together with the Token URL. I think this happens, because the domain for Token and Auth Server are different (sandbox.paypal and api.sandbox.paypal) I’ve had the same error before while trying to connect to the FitBit API (https://dev.fitbit.com/docs/oauth2/) where they’re also using different servers. Does anyone know a solution to that?
Is there something special that has to be done to get a default off subquery condition to work with table filters?If I turn the subquery condition to always on the information in the table is filtered correctly. When the subquery condition is set to default off and a value is entered through a table filter nothing happens. It is like the table is not being refreshed to pull the data in. Thanks!
Built a table where the only field viewable is an encrypted text field. I have a search bar at the top of the table, but cannot figure out how to make the field searchable.
I get an error everytime I save an opportunity but the error doesn’t stop the save because the fields are not actually missing. When I click on the error, It disappears. Any Help would be appreciated
I need to show certain fields/sections based on the value of another field (same model) that is a reference field…I’ve tried making the additional fields render based on the reference field name…and no dice. The problem here, I think, is that the value of said reference field doesn’t populate until I save the model (because it’s a reference to a related object). Yes, no? But even after I save and refresh, the conditioned fields don’t appear. Ideas?
Iframe in skuid page (salesforce Classic is working fine).But when we are using Lightning experience then that iframe is not working.Can anyone help me how to use iframe also in lightning experience?Thanks,Raj
I’m new to Skuid so forgive me if this is an easy answer! I’m trying to pre-populate the ID on a new record created through a table. The ID needs to be that of the record that the page is related to. So there’s an opportunity, the skuid page is a custom object…and the new record created from the custom object page needs to relate back to the original opportunity. I can get it to work with the param/url option in the model condition for the “NEW” records…because the url references the opportunity record, however in the “VIEW” records, that same condition pulls the ID for the custom object, not the admission.Not sure if it’s a change I need in the table, the vforce page or what…all help is so appreciated!
I was having issues with getting a function to run after a model updateData function was called. See below for a the answer.
I am trying create a ui only checkbox field that takes a date field and sees if it falls in between a start and end date field. I believe the formula should be wrapped with “AND” however that doesn’t seem to be supported.IF({{InvoiceDate}}>={{StartDate}},{{InvoiceDate}}<={{EndDate}}, 1,0)
Came into work today and for some reason none of the page includes are working in lightning. They were fine yesterday… anyone else having this issue? Am i just going insane…?
I have a field called Interaction_Type__c, which is a picklist dependent on another picklist, Interaction_Category__c. When I attempt to override the metadata for Interaction_Type__c, like so, the page bombs. I thought skuid was preventing an override of a dependent picklist. But apparently not anymore? Here’s the call stack: Help?
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.