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 community, thanks for being awesome! I’ve found this to be one of the most useful places to come when I run across weird errors so I wanted to document this one here. Scenario: Page loads in Visualforce, but in Lightning it refuses to load and throws an error in the console (“Cannot read property ‘setParams’ of undefined”)Cause: In this case, this error was occurring because the page referenced a custom label that didn’t actually exist within Salesforce. Removing the reference to this label (or adding it as a custom label) fixed the issue.
Hi, is it possible to generate a soql from the results of a model and populate a field with the soql? I have a SKUID page that allows users to select from a list of Financial Accounts. The selected records are then adopted into a model called Selected Financial Accounts. Is it possible to take the results of this model and generate the underlying soql and add it the Account record. I need this to generate a soql so that Conga can run on the Account record. (In Salesforce the Financial Account object is tied to the Account object by a junction object.)
I am trying to make a page that does two things, One take order Id passed from the URL (working) user it to create a new record on a different object (service), Then that new service.id and create and new serviceProduct record based off of a order Item (orderItem) that is listed below by a row action. Connecting things like the OrderItem.id the Service.id etc… But I can not pass the service.id variable into any Component that is set to the model orderItem. What am I doing wrong? I have tried to use the {{Service.id}} and {{$Model.Service.data.0.Id}} both enter nothing into the new serviceproduct record. Once the page loads the user should enter any info for the service and click Save & Next, then go down to the Table and click the row action button on any one of the rows to create a new row.
To be more specific, how to set different table header color for different profile?
Curious if anyone has ever achieved a custom table summary for percentages? Using the out-of-box function, SKUID either wants to add up the percentages or average them out. Both aren’t really what I am looking for. Instead, I’d want to control the numerator and denominator to generate a performance metric that ends up in the summary row. Below is a screenshot of the column in table.
We’re building a Skuid model with the Salesforce object “SurveyInvitations” - we know there is a standard field called ResponseStatus. We can build reports with it, see it in object manager, and in workbench. In Skuid, we do not have the ability to add it declaratively. We also tried to add it manually in XML and got the error attached. Also included below is the workbench view. I am Sys Admin role and can view the field across the platform otherwise. How can I make this bugger appear?! uded
I added a chatter feed to one of my page includes and while it shows the feed, it does not let me interact with it. I can’t post anything and when I click the ‘hide feed’ text, nothing happens. Here is a gif showing the issue: https://share.getcloudapp.com/Qwu7Yn7n
I am getting this error in 12.2.14.Functionality works great when i am working directly from the included page (if it is loaded directly instead of via a Page Include). But once I try to include this V2 page into another V2 page via the Page Include component the issue starts. The page include is within a Tab and then within the included page I click to open a panel I am getting the error below: There was a problem initializing a component of type skuid__list: Cannot read property ‘_clientData’ of undefined The included page contains a list within a modal panel that seems to be when the error is generated (when the Action to display the modal happens)Any idea what would cause the error above?
The currently logged in user’s Access Token is stored inside the web browsers HTML5 local storage. This means that it will be stored in plaintext, which can result in an attacker stealing the Access Token and sending it to a server they control. Is it possible to refrain from storing sensitive user information inside the web browsers local storage.
On page load, we are seeing requests run without end. The requests are all “font” Type. We are utilizing a GoogleFreeFont in the Custom Theme. How can we make the requests stop?
This error occurs when I attempt to add a new Chatter Free user. Here’s a screenshot of the error.
Hi, I am new to skuid and seeking help to understand how Skuid resolves skuid pages during rendering. Where do I find in-detail article about how pages are resolved and loaded before User sees those on screen ? I mainly have two questions. When does skuid resolve Models in a page How JS code snippets are resolved ? whether all JS snippets, present on page, are resolved before page loads or only those JS snippets are loaded which are used in ‘in-line’ attribute of any component. My main aim is to optimize page load performance. I have gone through Page performance Guide however I do not find detail guidance about how to optimize performance after using browser’s network analysis tool. Is there any way Skuid can help us to know anomalies in our page and suggest a fixes to improvise performance?Thanks
I have a model called KeyIndicators with a bunch of UI-only fields that reference other models. The other models in this case are created dynamically, there could be between 0 and 38 of these other models based on the user’s choice (M0-M24 and Q0-Q12). The UI-only fields were using MODEL_LOOKUP formulas to get the values of these other models, and there was no error when that model didn’t exist, for example if there was not a model called M12, the formula MODEL_LOOKUP(“M12”,“avgValuec”, “Indicator__c”, {{Id}}) didn’t break the page, that field was just blank. However, I’m switching these dynamic models from aggregate to non-aggregate, so I can get at a median value if needed. So now I’m using the custom formulas posted to github, such asAGG__MEDIF(“M12”,“Value__c”,“Indicator__c”, {{Id}}, false)This works great unless there is not a model called M12, then I get an error, invalid model in function.Ok so fine, I’ll create my base model KeyIndicators dynamically as well, and only create th
Hi Guys, Experiencing a weird issue i have never encountered before I have 2 pages. Lets call the 1st one: Page A and the Second one Page B Page A has a button to call with a popup action to show Page B in a page include All worked well until… On Page B i changed the Model Name from Sub1 to SubApp (that did not change all reference to Sub1 Model, so in XML i tried to change to the proper model) To make sure I did not do an error in XML, i changed the reference to Old Model name on 1 UI field only from this value {{$Model.Sub1.data.0.Sales_Partner__r.surcharge__c}} to this value {{$Model.SubApp.data.0.Sales_Partner__r.surcharge__c}} When I preview Page B by itself all works well, When Page B is called From page A via Page Include nothing renders, and looking at console here’s error “1. There was a problem rendering a component of type skuidpage: Cannot read property ‘displaytype’ of undefined” Any ideas? I’m an older version of skuid: 10.0.23 thx
We’re using Spark (12.2.14) and we have a page with tables, these have records with fields that contain references to SF objects, these display as links. If I click on the links, the correct SF object opens in the same tab. If, however, I chose to open the link in new tab from right click menu, all I get is the page with the tables again not the SF object. This means I can’t keep a skuid page open with all the filters etc applied and at the same time look at objects referenced in the tables.
Is there a way to hide the None option for a Picklist without making the picklist Required? I’ve been looking over the documentation for creating custom field renderers and am having trouble figuring out how to remove the None option from my picklist without making the picklist required. I’m conditionally rendering a picklist based on whether or not the Logic__c field was defined on row creation. If it wasn’t defined on row creation, the Logic__c field doesn’t apply and I don’t render the field. Here’s my code currently (Logic__c is a Picklist field): var params = arguments[0],<br>$ = skuid.$; var field = arguments[0];<br>var row = field.row;<br>var value = arguments[1]; if(row.Logic__c !== undefined){<br>&nbsp; &nbsp; skuid.ui.getFieldRenderer(field.metadata.displaytype).edit( field, value );<br>} I’d like to force it such that the None option is not selectable in Logic__c’s custom rendered picklist, but if I set my picklist to Required it cause
I’ve reviewed this document: https://docs.skuid.com/latest/v1/en/skuid/merge-syntax/global-merge-variables.html#modelIt looks like there’s no way via merge syntax to tell if a model has unsaved changes. Is there any way to do this? I’m looking to put logic into a Formula on a Branch to determine whether or not a model has unsaved changes.Thanks!
I am trying to remove a row in a Ui only model based on an Id field. The JavaScript completes successfully, but the row is not deleted. What am I missing?
I have an image field in Salesforce that can (depending on the situation) display more than one image. In Skuid, all I see is the HTML when I try to display the field in a text box (with or without allowing HTML for the field) and when I try to use the Skuid Image component, I just get a broken image. Here’s the HTML from the text field: <img src="/servlet/servlet.FileDownload?file=015PM000000t2nZ" alt="Account Icon" border="0"/> <img src="/servlet/servlet.FileDownload?file=01538000002DI0u" alt="Account Icon" border="0"/><br> Here’s the link from the broken image: [Hiding this part of the URL]/apex/%3Cimg%20src=%22/servlet/servlet.FileDownload?file=015PM000000t2nZ%22%20alt=%22Account%20Icon%22%20border=%220%22/%3E%20%20%3Cimg%20src=%22/servlet/servlet.FileDownload?file=01538000002DI0u%22%20alt=%22Account%20Icon%22%20border=%220%22/%3E I am running Edinburgh Update 1 (16.1.8.0) What am I doing wrong?
I have a model on my page with a row that is not yet saved to Salesforce, so it has a SKUID Temp ID pending a save to the database.I’m trying to create a new row in a related model as follows (example javascript): relatedModel.createRow({doAppend:true, additionalConditions:[<br>&nbsp; &nbsp; &nbsp; &nbsp; {field: 'ParentLookup__c', value: skuidTempIdFromMainObjectsModel}<br>&nbsp; &nbsp; ]}<br>); The skuidTempIdFromMainObjectsModel is properly populated with the SKUID Temp ID of the parent object, but it would appear when I create a new row this way, the ParentLookup__c field on the newly created row is empty (it doesn’t pass the skuid temp ID over)In the SKUID editor you are able to create a new row and pass skuid temp IDs over and once the models save everything works properly to associate the items together. How can this be accomplished when creating new rows via javascript?Thanks!
I have a Queue component that I’m looking to re-render because I sorted the model data (via javascript sort function) I’m just using .render() on the component to achieve this. It works fine for one of my Queue components, but not on the other. It’s very perplexing. I’m getting the error: TypeError: Cannot read property ‘remove’ of undefinedThe Queue is rendered and visible on the screen.Any ideas as to why this would work for one Queue component but not the other? Any thoughts on this specific error message?Thanks!
Is there a way to check if a component (with a given component ID) is currently visible on the screen in Javascript? I can check if it is “rendered” withskuid.component.getById(‘COMPONENTID’).isRenderedbut this isn’t enough, as it turns out that it being rendered and it being currently visible on the screen have different implications. For instance if I tell it to render with .render(), even if it “isRendered”, if it’s not currently visible on the screen this will cause an error.Is there a way to check on the component’s actual visibility (the component not being hidden)?Thanks!
We were unable to find a Skuid Page named MyPage. The Page is either inaccessible or does not exist. If you believe you should be able to view this Skuid Page, ask your System Administrator to check the Sharing Model for the Page object to ensure that you have access to this Skuid Page. Users have skuid licenses and page viewer permission set.
The problem is with Rich Text Fields in Popups in Edit mode by default. <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="Account" limit="1" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Account"> <fields> <field id="RecordTypeId"/> <field id="Account_Notes__c"/> </fields> <conditions/> <actions/> </model> </models> <components> <pagetitle model="Account" uniqueid="sk-qqE-514"> <maintitle> <template>{{Name}}</template> </maintitle> <subtitle> <template>{{Model.label}}</template> </subtitle> <actions> <action type="multi" label="Edit Mode" uniqueid="sk-qqE-520"> <actions> <action type="showPopup"> <popup title="New Popup" width="90%"> <components> <social model="Account" uniqueid="sk-qqP-610"/> <basicfieldeditor sho
As a Table Action I want to remove a row from my table right away, however if that row has ever been saved to the database, I also want to (on eventual save) delete that row from the database. If it hasn’t ever been saved to the database, then I don’t care I just want to remove the row.If initiating a Row Action, Is there a way that I can check if a row has unsaved changes, or has ever been saved to the database? Some way in Javascript perhaps? I’ve been searching through the Arguments object when running a snippet from a row action and I can’t seem to find anything indicating if the row has ever been saved to the database or has unsaved changes or anything like that.I could perhaps check if the row has an Id like “sk-%” which would indicate that this is a row with a temporary SKUID ID and hasn’t been saved yet, but I’m not sure if this is the best strategy. This also doesn’t help me if I want to check if a row that has previously been saved has unsaved changes. Any other thoughts?Than
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.