Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I have a requirement where there will be only two records in a table but that has almost 12 columns to display, is there way where I can display the columns as rows and rows as columns in a table.Thanks,Premanuj
we have a custom parent object and attachment as a child object. we have one reference field which is the parentId of attachment. when we try to add a condition to look for the parentId on the reference field then it is not working. where clause is not getting added to the attachment query
Have set org’s Currency Locale to English (India) - INR. Currency fields are getting rendered properly with INR symbols in the salesforce standard layout. But it is showing $ by default in the skuid pages.
Record Details Page not Redirected
I have a page include that says it’s causing 3 Skuid errors. I’ve tried finding those errors by putting skuid.$(‘.nx-problem’).text() in the console, but there’s no error text.In addition, if I load the Skuid page outside of a page include, there are no errors.Any ideas on how to resolve this would be helpful.
I’ve referenced these 2 posts (here and here), and both say returning false should stop the successive actions from running…but I’m having no luck. var params = arguments[0]; var step = params.step; var $ = skuid.$; // Get Incentive and Template Requirements models var models = skuid.model.map(); var requirements = models.TemplateRequirement; var incentive = models.Incentive; // Get fields from each model for use in validation var incentiveRow = incentive.getFirstRow(); var incentiveStart = incentive.getFieldValue(incentiveRow, "Incentive_Start_Date__c"); var incentiveEnd = incentive.getFieldValue(incentiveRow, "Incentive_End_Date__c"); // for each Template Requirement, validate the Milestone Date is within range of the Incentive Start and End Dates. $.each(requirements.getRows() ,function(){ var requirementRow = this; var milestone = requireme
I am attempting to show an icon as table data when a record meets certain criteria. I found the documentation here:https://docs.skuid.com/v10.0.4/en/skuid/javascript/snippets/table-custom-field.html and the code shared under ‘display an icon’ works. how do I make this work with a font awesome icon though? Here is the code I have (including the working provided example) var field = arguments[0], value = arguments[1], $ = skuid.$; var tableCell = field.element; //var tableCellDiv = $(‘ ’).addClass(‘ui-silk’).appendTo(tableCell); var tableCellDiv = $(‘ ’).addClass(‘fa’).appendTo(tableCell); if(value === true){//tableCellDiv.addClass(‘sk-icon-refresh’); tableCellDiv.addClass(‘sk-webicon-font-awesome:refresh’); console.log(‘value was true’); } else {//tableCellDiv.removeClass(‘ui-silk’); tableCellDiv.removeClass(‘fa’); } The commented out lines are the working example for the silk refresh icon. I tried inspecting the element in a different part of the page to find out what class I’d need
How to add a custom button which i have created in salesforce to be added to skuid layout directly and functionality remians intact
Hello!For an inline javascript snippet I’ve typically used this to run the snippet: $(document.body).one('pageload',function(){<br>&nbsp; &nbsp; SOME CODE<br>} However, this will only run the first time the component is rendered if the Skuid Page is embedded in a lightning component. If you navigate to a different page and then back to the previous page (importantly - this is internal navigation where a full page refresh doesn’t take place - e.g. navigating to a different page in a Salesforce Community) - then this inline javascript will not be re-executed.So, in a nutshell - I need a way for the inline javascript to be executed each time the Skuid page in the lightning component is rendered.Cheers!Louis
I am try to pass the date in a page include but must not have the date 01/01/1900 in the correct format. Help?
For our users one of the useful features of Salesforce classic is the ability to customise the tabs that appear at the top of the page. in Skuid we have a master page containing a navigation bar with that link to their associated object views. Is there a way to replicate or get close to replicating the ordering of the the tabs functionality from Salesforce classic?
Hi all,I’m looking for a way to inject template text with merge fields dynamically to my page (at runtime, with JS).Example:I want to add a text like “… the latest status is {{status__c}} …” and have the merge field transformed to status value.My idea was to use a template field, set it’s new text and render it again.I replaced the fields text in the HTML DOM element with JS (which works). But after calling the render() method of the template field, the old/previous content is set again.Any suggestions?
My question is about button set properties. The button set properties have the option to set the Context Conditions (where id = id of row etc). In what situation would this be used? I typically have been setting the Model to the button, but not sure about the Context Condition propertyThanks
I have a screen that looks good on my iphone. When I refresh it looks like this. If I refresh again it is good again. Any ideas why?
Has anyone solved for this, please?I’m using a Search component to search for existing records that could be part of a many-to-many relationship. Ideally, I’d like to have an action that will allow me to link an existing record to the object I’m working on.Should be pretty simple stuff except: The return object actions don’t run in the context of the row you’re executing them on so for example, I can’t use {{Id}} to update my object. I end up with the Skuid ID rather than a real Salesforce ID.Interestingly enough… I can do it as a Select action and it works fine; however that’s a less ideal user experience since it’s not clear that simply clicking the result will kick-off actions.Help, please!
Yo! Sorry if this has been asked already. How do I get the index of a loop created via merge syntax (used in a template component). For example, something like this (which doesn’t work): {{#$Model.MyLovelySkuidModel.data}} <li>{{index}} - {{{Name}}}</li> {{/$Model.MyLovelySkuidModel.data}} Cheers! Louis
Is there plans to support the “Individual” object?
I have two aggregate models with the date fields both rendering grouped by calendar month. So for January both model displays “1” for the date. I am trying to do a MODEL_LOOKUP based on the date fields but just using the alias names of the date fields are not working. Formula: MODEL_LOOKUP(“Goals”,“Profit”,“StartDate”,{{InvoiceDate}})
I’m running into something strange that I can’t figure out. Here’s the basic setup: My page contains 2 models that both have the standard Contact object in common. Model #2 should be limited to only those records that have Contact records that are also found in Model #1. Here’s what’s happening: When I load the page, the Conditions for Model #2 are being ignored and it is loading all records. However, just to make sure my Condition was correct, I created a custom button that re-Queries Model #2. When I click the custom button, the condition is applied and the records of Model #2 are limited as intended. When I click the custom button that re-Queries Model #2 the conditions are applied: Here are my Models and Conditions: I’ve tried everything, including completely deleting my models and recreating them and every possible combo of “filterable default on, off, always on, etc.”. Why aren’t the Model Conditions being applied when the page loads instead of only when I re-Query the
I created a table on the ContentVersion object. I wanted to allow users to be able to reference this field when they are using the search bar in the table. It seems like the search feature works for all the other fields I am using ContentVersion.Title, ContentVersion.Description, but it does not work for ContentVersion.TagCsv. Does anyone know if ContentVersion.TagCsv can be searched? I am wondering if it has to do with the size of the field type Text(2000). Any help will be greatly appreciated. Thank you.
Hi,we created some pages on a sandbox with version 9.5.14. However when we moved the pages to new sandbox with skuid version at 10.0.4 (we also tried 10.0.7 as per one of the thread), we see that some of the pages are mis-aligned. This is causing lot of problem as there is no hint we could find to resolve the issue.
Hi, Does anyone know the correct (or preferred) load order for the Skuid component packs. Thanks in advance
I have a REST model and it is pulling back data correctly. One of the fields is a Datetime and when I try to create a Date Range filter, nothing gets rendered. Am I setting it up wrong or is it just not possible to do? Any suggestions on how I can get a Date Range filter to work?Thanks
Hey folks!A Lightning component that includes a Skuid page will often render the Skuid page later than the rest of the component. This is often quite a short delay but is sometimes more pronounced. I was wondering if there was a way of checking to see if the Skuid page bit had rendered and conditionally displaying a loading wheel (or something like that) whilst the Skuid page is loading?Cheers!Louis
Hi all, I’m trying to find a way to insert value from “outside” into a richtext field (CKEditor) via JS snippet. While there are some examples available regarding normal CKEditor usage (https://ckeditor.com/old/forums/CKEditor-3.x/heres-how-insert-text-and-tags-cursor), I get stuck at the very first step -> getting the CKEditor instance in javascript.This should work var oEditor = CKEDITOR.instances.yourEditorID;<br><br><br> but “instances” is empty in my skuid page (normal Field Editor showing rich text editor).Can someone point me the way?
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.