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 guys,So I have a couple of Picklists in different Custom Objects that I would like one to control the other. I have tried to se the values but the controlling field is not visible due to that it belongs to another custom object. Is there a way to link these two to be able to have the Field Dependency from one pick list controlling the other?Thank you!!
Hi all, I am using multiple tabs in a skuid page. In one of the tabs, on change of some field, I am displaying custom validation (created on the salesforce object). After getting the error message, when I click on the next tab, few of the page title sections’ rendering conditions doesnt seem to work at all. The models are getting loaded because all the fields are displaying properly but only few page title sections are not at all getting rendered. Any suggestion would be helpful. Thanks
I’m working on a global save/cancel component. It appears to be functioning alright, except that the enable conditions on the buttons that I’ve tried to reproduce through the XML are not working. Any thoughts on why that would be? From the core code, it looks like buttons are technically their own components. Do I have to manufacture them and then somehow add them as child components of the pagetitle? Here’s the runtime code so far: skuid.componentType.register("compass__globalsave",function (element,xmlDef,component){ // Shortcuts var $xml = skuid.utils.makeXMLDoc, $e = skuid.events.subscribe, // Get properties var exceptionsArray = xmlDef.attr('exceptions') && xmlDef.attr('exceptions').split(','), cssClass = xmlDef.attr("cssclass") ? ' cssclass="'+xmlDef.attr("cssclass")+'" ' : '', uniqueId = xmlDef.attr("uniqueid") ? ' uniqueid="'+xmlDef.attr("uniqueid")+'" ' : ''; if (exceptionsArray && exceptionsArray.length) mo
Hello, have a quick one. I’ve got a rest api running a pulling data in relation to the Account that is set by the page param. I then want to use an action to update a row on the account. What would be the correct way of writing the variable? This is what i assumed was correct but is not: {{$Model.APIConnection.response.data.id}}
I have the following if formula references a reference field. It shows blank on all rows: IF({{Primary_Vendor_Contact__c}} != null, "No error" , "A primary contact is not designated for this relationship")
In a table I’m getting single spacing between rows. When I add a Boolean checkbox field to the table,(LDC Rejected) the spacing increases. Is there something I can do about that? I should note that this is an aggregate model, if that makes a difference… Without checkbox With Checkbox
I have a condition that was role based, so I created 2 buttons and added a render rule. That was able to distinguish 2 sets of actions depending on the role. Well now within that same record as well there is a field “record type” that I want to default based of the profile. So basically if it is profile A auto default to record type a Profile B auto default to record type b Any Ideas on how to go about this? Thank you all!
I have three different levels of SKUID access. 1) Internal Staff who use SKUID as both builders and viewers. 2) Community Members who use SKUID to log into a portal which consists of all SKUID pages after the login. 3) Public Users who log into the Community via Sites and have view access to SKUID without authentication. The problem I am running into is that for the second group they may abandon a page and perhaps try to refresh it later (after their session has expired). But since the public guest user has View privilages they can see the page (although the correct information is not getting loaded into the models since it depends on the logged in user.) and this is providing some unintended results. Is there a way for me to run an action based off of a non-authenticated user hitting the page (perhaps redirecting them to the login page?) Or maybe there is a better way to satisfy the three conditions but lock down the security on some of the Skuid pages.
I’m trying to update a rows picklist value using a snippet. Here is my loop $.each( SalesOrderLineItemsSelect.data,function() { var updateRow = SalesOrderLineItemsSelect.updateRow(this,‘Status__c’, ‘Invoiced’); }); (There is other stuff in the loop, but that’s working correctly so I removed it ) This loop runs and it updated the “Status__c” field correctly when I do a skuid.model.map().SalesOrderLineItemsSelect.GetRows(). But, when I save it, the field isn’t updated. I’ve put another text field in the updateRow var to see if it would update properly and it did, but for some reason this picklist will not update. Any idea what could be causing this?
I have created one Row Action in Table and calling apex function from snippet. But it is not able to call the Apex function. Weird thing is that i am not getting error after clicking row action icon. Can somebody help to resolve it? Class - public with sharing class MyApexController{ public static List getUnReadAlerts(Id alertId){ // Logic return List; }} Page - <apex:page docType=“html-5.0” readOnly=“true” standardController=“SObject” extensions=“MyApexController”> <skuid:page page=“skuidPage”/></apex:page> Snippet - var $ = skuid.$,args = arguments[0],item = args.item,list = args.list,model = args.model; var currentUserModel = skuid.model.getModel( ‘NewModel’ );var alertRecord = currentUserModel.getFirstRow();var alertId = currentUserModel.getFieldValue( alertRecord, ‘Id’ ) ;currentUserModel.abandonAllRows();alert(‘Point1’);var myUnReadAlerts = MyApexController.getUnReadAlerts(alertId);currentUserModel.adoptRows(myUnReadAlerts);alert(‘Poi
We’re keen to use Calendar component to manage our calendars rather than Google calendar, though a few drawbacks are getting in the way of productivity:For week view: (1) We want to see the current day highlighted somehow (in google calendar it puts the whole column in a light grey)(2) We want to see something indicating the current hour, or perhaps at least row lines - at the moment it’s really hard to work out what time we are at in a day, and see how far the next event is, as well as identify which hour an event falls in.(3) Can we make some text smaller in the event display “Event Tempate”, e.g. on the first row show a start and end time e.g. “HH:MM - HH:MM” in smaller bold text, then on the next row show the subject in larger text?
What formula is required in a UI Only field to turn a datetime into something that appears as HH:MM. For example, my datetime field is currently showing a full date/time e.g. “14/07/2016 09:07” but I want to see just “09:07”. The Hour and Minute function work to an extent, though I’m losing a 0 at the end, so “09:00” shows as “9:0”.Ideally we’d append a text field “Subject” to the end:{{StartDateTime}} {{Subject}}What formula is needed to turn this into:{{HH:MM}} {{Subject text here}}
I have the below javascript snippet, which is designed to batch save records. I have very limited experience with using javascript, so what I have built below is based on information I could find in the Skuid community and support tutorials.Any help with this would be appreciated. var $ = skuid&#46;$, models = skuid&#46;model&#46;map(); &#47;&#47; Define the source model &amp; save model var sourceModel = models&#46;VendorChecklistVerify; var saveModel = models&#46;VendorChecklistSave; function batchsave(){ if (sourceModel&#46;data&#46;length &gt; 10) { var increment = 1; $&#46;each(sourceModel&#46;getRows(), function(i,row){ if (increment &lt; 11){ &#47;&#47;duplicate this row in the Save Model saveModel&#46;adoptRow(row); &#47;&#47;remove this row from the source model sourceModel&#46;abandonRow(row); &#47;&#47;add to the increment var increment = increment+1; } else{ &#47;&#47;save the "S
I have a button that has worked for sometime that quit working recently. The button is set up to run multiple actions. The first action is to run a snippet. The snippet simply creates a Conga Composer action so we can print forms. The second action closes the popup. Now when the button is clicked nothing happens. I opened up the console and I am getting the error VM6683:9 Uncaught TypeError: Cannot read property ‘getSelectedItems’ of undefined.I did not write the snippet, I just borrowed it from the forums, but it has been working for a long time. Here is the snippet.var params = arguments[0], $ = skuid.$; // Get the Ids of the selected items as an Arrayvar idsArray = skuid.$.map(arguments[0].list.getSelectedItems(),function(item){ return item.row.Id; });// Convert this array to a comma-separated Stringvar idsString = idsArray.join(‘,’);// Encode the stringvar encodedIdsString = encodeURIComponent(idsString);// STEP 1: CHANGE THE NEXT LINE TO THE TYPE OF RECORDS YOU’RE
Does anyone knows if it is possible to have a template field display certain text based on if a checkbox field in a model is selected? Thanks
Is there any kind of event fired when a calendar view is first loaded? I’d like to hook it.
We have a button called refresh queue. This button is used to refresh the Cases queue on a skuid page. So to see the cases queue, instead refreshing the entire browser we had this button which refresh a part of the page. We had the following JavaScript code that we used to refresh the queue. var params = arguments[0], _ buttons = params.component.element.buttons,_$ = skuid.$; $.each(buttons, function(){ _ _ _ var myModel = skuid.model.getModel(‘Case’);_myModel.updateData(); _ _ _ _ _ _}); This piece of JavaScript code (On refresh queue button) used to work properly previously but now the button (refresh queue) is not working. I am unable to figure out on what is going wrong. The snippet shown above is also taken from the community long ago. It worked properly at that time. Another problem is we didn’t use this page for the last month or more. So Can anyone help me on how to correct the code and make the button work again. Thanks.
We have a table with 10 filters on it - can we clear all in one go? Otherwise users have to go into every single filter and clear/remove values which is a slow process.
Hi i have the following function in inline js file. It is working only for Default and classic themes. Not working for remaining themes…$(document).ready(function(){ function openDrawer() {$(“.NewTable .sk-icon-preview”).trigger(“click”);};openDrawer();});
I just noticed that help.skuid.com has been updated. Just new look or is there new content?
I have a snippet plus a set of actions that I want to execute from multiple places on my page. Right now I have duplicated them as actions fired on multiple tabs in a tab set via each tab’s “Whenever Shown” properties. Is there a way that I can instead trigger a single set of the actions from the each tab’s properties? Maybe I need an action that calls a very simple snippet that calls a new button’s actions, and that button has a single set of the needed actions? I want to centralize all of the activity (so that changes can be made once) but I also don’t want to create any processing overhead, such as loading a fake model from the database (Salesforce) to make it work.
When I use “Today” to update a date/time field I get the following error If I put a specific date in it works. But not using “Today’, Yesterday”, or “Tomorrow”
On click of record in skuid page table , i am calling Apex method via javascript. The Apex class is returning some data in the form of list(lets say related to some XYZ object). How can i display this data in my skuid page?Is it possible to achieve so?
See title.See video.
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.