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
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.$, models = skuid.model.map(); // Define the source model & save model var sourceModel = models.VendorChecklistVerify; var saveModel = models.VendorChecklistSave; function batchsave(){ if (sourceModel.data.length > 10) { var increment = 1; $.each(sourceModel.getRows(), function(i,row){ if (increment < 11){ //duplicate this row in the Save Model saveModel.adoptRow(row); //remove this row from the source model sourceModel.abandonRow(row); //add to the increment var increment = increment+1; } else{ //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.
Hi all,I’ve built custom save and cancel buttons on a Skuid page I’ve built which includes multiple page includes. Right now they both enabled at all times. Ideally I would like to enable the buttons only when at least one of the models detected on the page has unsaved changes as it seems more user-friendly. Has anyone done something similar? I checked the events documentation, but nothing quite seemed to fit. I’m sure I could hack something together, like using a setInterval function to poll for changes, but I’m wondering if anybody has any better solutions?Thanks in advance!
Is it possible to save an attachment from Skuid+Salesforce to our on premise server? We have a team that processes thousands of documents a year. We need them to be able to save and view documents related to records in salesforce, but stored on a database in our data center.
I currently use the following in salesforce to check if the user put in a valid email format:IF( Text(Temp_Type__c) = “New Member”, IF(REGEX ( UPPER ( Temp_Lead_Email__c ) ,“[1]+@[A-Z0-9.-]+.[A-Z]{2,4}$”) = TRUE, FALSE, TRUE),FALSE)I would like to do this within skuid before being sent to sales force. Is there some code that could be put in a UI-field or some script that can check for proper formating? A-Z0-9.%±/!#$%&'*=?^'{|}~ ↩︎
We have a customer community and are on a force.com standard community domain (https://companyname.force.com). To improve experience of end users we want to move to https://customers.mycompany.com.Salesforce article http://docs.releasenotes.salesforce.com/en-us/summer14/release-notes/communities_custom_domain_URL.h… explains how we can enable and configure this feature.Will Skuid work as it currently does, are there any limitations of configuration changes required?
I just upgraded my production salesforce to Rockaway 8.15.1 from Banzai (not sure which version) and now all of my skuid pages on Force.com sites no longer load. I’ve checked all of the setting suggested on http://help.skuid.com/m/11720/l/114236-build-force-com-sites-with-skuid and see no problems. The errors I get are a bunch of 404 when trying to load pages like: https://citizensclimatelobby.secure.force.com/Endorsement/resource/1468011223000/skuid__JQueryJShttps://citizensclimatelobby.secure.force.com/Endorsement/resource/1468011051000/skuid__SkuidJS and then I get TypeError: skuid.$ is undefined See image from Console below. When I load the page from within Salesforce it loads fine so this is some issue with Force.com Sites. For instance this file is available from within Salesforce: https://skuid.na14.visual.force.com/resource/1468011223000/skuid__JQueryJS Any ideas what could be causing this error? All my Force.com users are locked out so any help is very appreciated. Tony PS I
Hello, We would like to be able to embed editable model fields within a radio button field. For example, the radio button would have the following options: - Pay $___ per month - Make payments for the next ___ months - Make payments every month until ___ where ___ represents a field from the model that the user is able to fill input into / edit within the radio button input. (Let me know if this doesn’t make sense and I can try to make a sketch.) Does anyone know how I can do this on a Skuid page? Thanks! Aparna
Has anyone ever put a target line on a chart? So if we have “average time to close opportunities” graphed out by month, we’d like a target line on there - say 14 days. I’d be willing to hardcode the target value, but I just want it to show up all the way across the chart range.
I have a button that has a hotkey associated with it. The button also has Enabled Conditions so that it is not always enabled. I find that even when the button is not enabled the user can still use the hot key to activate the button. Below is the XML for a page that demonstrates this. Button is disabled when the field is blank, but if you type Ctrl-S the button is activated and a popup appears. Anyone else having this problem? Is there a workaround? Thanks! <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="User" limit="20" query="true" createrowifnonefound="false" adapter="" type="" sobject="User"> <fields> <field id="Search" uionly="true" displaytype="TEXT" label="Search"/> </fields> <conditions> <condition type="userinfo" value="" field="Id" operator="=" enclosevalueinquotes="true" userinfotype="userid"/> </conditions> <actions/> </model
Hi - we have some reps who are seeing their tabs at a fixed width so the full names are overwritten. From one of our reps:Google Chrome Version 51.0.2704.106 m (64-bit)OS Name Microsoft Windows 10 ProVersion 10.0.10586 Build 10586
I have a fairly simple setup with 3 fields in a field editor: The fields are set up so that Market Segment 2 is enabled when Market Segment 1 is not null and Market Segment 3 is enabled when Market Segment 2 is not null: This works fine when logged into the System Admin account that I develop in: Unfortunately, this does not work properly for normal users: When I enter a value on a normal User account, the Market Segment 2 field remains disabled. I used the console to confirm that the value was correctly set in the model while logged in to the normal user and it was. I initially assumed this was a permissions issue of some sort, but if I enter the value, in the normal user account, and then use the console to force the field editor to re-render, the field is enabled correctly. If I then enter a value for Market Segment 2, I have to re-render the field editor again to get Market Segment 3 to enable. UPDATE: I decided to add some inline JavaScript to force the field editor to refresh whe
Is there a snippet to open POP - UP action using JAVASCRIPT. I need to add a condition before the POP UP comes up. If a= 1 then show popup else do not open the pop up box on a button click.
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.