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
I have a table on my page, I am trying to add row action that will open Chatter Feed for the selected record. I have created a new model with only one record. When a user clicks this row action I am passing the ID of the selected row to my second model’s condition and query the model and then open a popup with Chatter Feed Component with “Feed for the Model’s first row” Selected. I know there is a row in this table but I am getting the message “No object found” Does anyone knows what I am missing?
I’m working on a process in process builder and saving on a table. All the fields update correctly except for a Date field that I have going to Null when specific changes are made. I believe there is an error that doesn’t update fields going to null or blank with recent update. I don’t recall this being an issue before 10.0.0Here’s video
Wanting to use “Run Multiple Actions” option on table row action in order to add additional rendering options to standard “Edit Record” option. Is there anyway to mirror table row “Edit Record” as step in “Run Multiple Actions”.
Is it possible to create a model formula field with nested IF statements? I am trying to take the ObjectPermissions object and display profile names by using the profile ID that is given. If anyone has done this or something similar, I would greatly appreciate the help.
So I’ve seen that UI only fields cannot do calculations on DateTime fields, just Dates using formulas like this post https://community.skuid.com/t/calculate-age-with-ui-only-fieldHas anyone figured a relatively easy method/hack to do this aside from creating formula fields in Salesforce? We want to subtract 1 hour from a Salesforce DateTime field in the Skuid UI.
Looking to set up a wizard but want our users to go straight to Step 2 if there are open opportunities OR go directly to step 1 if there are not. Is this possible?
I’m trying to dynamically build a series of models on external salesforce data sources. What do I need to pass to the model definition to get the model to load properly? Apparently giving skuid the dataSourceTypeName and dataSourceName is not enough. The model isn’t getting the dataSource properly.Any ideas?Here’s the relevant code: var buildModel = function (n) {<br />&nbsp; &nbsp; var model = new skuid&#46;model&#46;Model();<br />&nbsp; &nbsp; model&#46;dataSourceTypeName = "salesforce";<br />&nbsp; &nbsp; model&#46;dataSourceName = n;<br />&nbsp; &nbsp; model&#46;objectName = "Patient_Case__c";<br />&nbsp; &nbsp; model&#46;id = n;<br />&nbsp; &nbsp; model&#46;type = 'aggregate';<br />&nbsp; &nbsp; model&#46;isAggregate = true;<br />&nbsp; &nbsp; model&#46;groupByMethod = 'simple';<br />&nbsp; &nbsp; model&#46;groupByFie
I want to merge same record in partner list in account object. I have share screenshot. All Highlight record are same but i need to merge when ever user click to partner tab. if possible , any one have idea please share with me i am in stuck to resolve.
when am trying to create progrsIndicator component, Am able to see the component but when i expand it i am not able to see the progress indicator option? i referred below link-https://docs.skuid.com/latest/en/skuid/tutorials/javascript/progress-indicator-component.html
Hi everyone, completely new to Skuid and trying to do something like the URL below to create an auto-complete feature in a Salesforce layout. https://smartystreets.com/products/single-address Done this many times on regular forms, but was able to add in the JavaScript necessary, but now I’m stuck because I don’t know how to get the Element ID of the address fields. Not sure if you can see the image below, but as you can see, it doesn’t appear that each field in the layout has an ID. It has a data-uid, but I’m not sure if/how I can use that to access this particular field. Trying to do something like this: var street = document.getElementById('street-address').value ; Any help would be really appreciated! Thanks! Joseph
I am coping the XML of a page from sandbox to production. Sandbox is on version 9.5.1 and production is on 9.5.7. When the page loads in production certain render conditions are not being honored. Basically the page works properly in sandbox but breaks in production. Has anyone else experienced this?
i have a super simple wizard (no conditions or anything on the modesl) on a SF site and it won’t move past the 2nd page. What am I missing?https://eatingrecoverycenter.secure.force.com/QuickAdmit
I have a skuid page for salesforce lightening. I have custom JavaScript for sticky header. It works on skuid-preview page, but doesn’t work on salesforce lightning. Has any one encounter this problem ?Below is my sample code:(function(skuid){ var $ = skuid.$; var j$ = jQuery.noConflict(); $(document.body).one(‘pageload’,function(){ var j$ = jQuery.noConflict(); j$(document).ready(function(){ var navOffset= j$(“.scrolling”).offset().top; console.log(navOffset); j$(window).scroll(function() { var scrollPos= j$(window).scrollTop(); console.log(scrollPos); if (scrollPos>=navOffset) { j$(“.scrolling”).addClass(“fixed”); } else { j$(“.scrolling”).removeClass(“fixed”); } }); }); });})(skuid);
I have a multiselect field called ‘AccountsFilter’ on a ui-only model. The picklist values are based on the Rows in a Model, and point to the Accounts model.I have a separate filter on the Accounts model. When I filter Accounts, I expect the ‘AccountsFilter’ field to update the picklist options based on the currently available rows in the Accounts model. But it does not.Help?
next n days is not working in skuid can you please give me solution for that
Hi, My buttons in a button set have a different format on the same page if they are part of a tab set or not. I have a custom theme and use Skuid 10.0.0.2 It somehow seems that my custom theme only applies to button sets that are part of the tab set . Please see screenshots below of what I mean, I have a Table and a Button set above and below the tab set. The theming below the tab is the correct one. Screenshot from Salesforce Screenshot from the editor Below is a screenshow from the Theme editor where it shows that the buttons under the tab set are the ‘correct’ theme. I can override it with CSS (this seems to work: .ui-button, .ui-widget-content .ui-button.ui-state-default {background:#fa0046;} ) However it is strange that it should happen like this, that buttons in the Tab set somehow seem to inherit a different style. See the screenshot from the Developer Console where for some reason the background is not what it should be (the buttons under the tab don’t have these style element
Here is my table before “Make Table Mobile Responsive” Here is my table after “Make Table Mobile Responsive” I get 2 action icones ad well as headers showing up in the table. If I uncheck, I get the old table back. I tried rebuilding the table but it still shows incorrectly. How do I fix?
{!REQUIRESCRIPT(“/soap/ajax/26.0/connection.js”)} {!REQUIRESCRIPT(“/support/console/26.0/integration.js”)} var ids = {!GETRECORDIDS($ObjectType.Ckte__c)}; if (!ids || ids.length < 1) alert(“Please select at least one record.”); else { var redirectUrl = “/apex/loop__masslooplus?&retURL=” + encodeURI(window.location.pathname+window.location.search); redirectUrl += “&recordIds=”+ids.join(“,”); redirectUrl += “&sessionId={!$Api.Session_ID}”; window.location.href = redirectUrl; }for the above code i have written the following code to snippet:var ids = {!GETRECORDIDS($ObjectType.Ckte__c)}; if (!ids || ids.length < 1) alert(“Please select at least one record.”); else { var redirectUrl = “/apex/loop__masslooplus?&retURL=” + encodeURI(window.location.pathname+window.location.search); redirectUrl += “&recordIds=”+ids.join(“,”); redirectUrl += “&sessionId={!$Api.Session_ID}”; window.location.href = redirectUrl; }I m getting error in the first line } expected … dont k
I have been working on having sticky save and cancel button when user scroll down the page. I have tried using JS and CSS but haven’t been able to get that feature working. Has any one tried creating sticky header in skuid ?
Can you use the model.exportData() function in a snippet to export an array of multiple models… that have different Sobjects as their data source?
Let’s say. I have a model ‘Meeting’ which is also an event source on my calendar. When a user clicks an existing meeting event or creates a new one. There’s will be a field editor for the Meeting record and other two components which are dependent to the master record meeting. My question is that when the meeting status has been changed. The corresponding components won’t execute the render condition properly unless I refresh the whole page and open up the popup again. Eg: if the meeting record’s status is New. It won’t show the other two components. Otherwise, it should show the other two components. Any idea? Thanks so much
I want to wait to run a query when the tab is selected with a filter of last quarter. What can put in the value field to use the current date and time?
We’re in the process of moving our Partner Community over to Lightning so we want to update our Skuid Theme to match Lightning. A key component for the “feel” of Lightning are the icons. Is there a way to access those directly in Skuid or should we download them from somewhere like https://www.lightningdesignsystem.com/icons/#standard and store them in AWS or somewhere like that. It would be really cool if we could somehow just access them directly though using specific classes. If anyone knows if this is possible please let me know!
Hi, This is the use case: I have two identical tables, one with Read only, the other with Edit. I have a buttom set with a custom Edit and Cancel button. When I click edit, it changes a value in a custom Model to On and Renders the Edit only table. On Default and when I press cancel , it renders only the Read-only table. Everything works fine Except(!) when I have scrolling on for the table. On page load or first time load, the editable table minimized to one row. If I press Edit, then cancel and then edit again, it renders correctly with scrolling enabled. So this seems strange as it does work on second try and I can’t figure out why. I’ve reproduced the error on a simple page and attached screenshot and XML. Never mind the format etc. this is the Screenshot after Page load when I press edit. See the scroll bars on the right side of the header, it does show all 5 rows. This is after I press Edit, Cancel and then Edit again it works Any suggestions why this happens? I guess there mig
It was working. I have save the record I want to attach to. I can see the id of the newly created record. When I drag and drop the file is ay uploaded successfully. But the there are not any new files uploaded.https://drive.google.com/file/d/0B409lhd9sYDcLWdNeVdHaV9KOUE/view
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.