Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Good morning! I am trying to add a OnClick JavaScript button we have in Salesforce to be available in skuid. The button is an Event custom list button that is available for Multi-Record Selection. I am not familiar with JavaScript so any help converting this process to Skuid is greatly appreciated! Below is the OnClick JavaScript code:{!REQUIRESCRIPT(“/soap/ajax/30.0/connection.js”)}{!REQUIRESCRIPT(“/soap/ajax/34.0/apex.js”)}var accountId = ‘{!Account.Id}’;var accountTerritory = ‘{!Account.Territory__c}’;var accountSalesRegion = ‘{!Account.Sales_Region__c}’;var accountSegment = ‘{!Account.Account_Segment__c}’;var accountOwner = ‘{!Account.Account_Executive__c}’;var newURL = sforce.apex.execute(“AutomaticOppAssigment”, “OpportunityAssignment”, {acctIdInput:accountId,acctTerritoryInput:accountTerritory,acctSalesRegionInput:accountSalesRegion,acctSegmentInput:accountSegment,acctOwnerInput:accountOwner});parent.location.href = newURL;
Is it possible to create/update/delete custom metadata records within SKUID? I was able to import my custom metadata as a SKUID model, but when I have a table on that model I am not allowed to edit any fields or make any changes. See below: Any help would be appreciated, thanks!
I have an object with 12 custom fields denoting each of the months. I was wondering is it possible to create a line graph that would show each of those 12 fields as points on the x axis, while displaying the value range as the y axis?
I have a visulization that uses two groupings on the same date field, one by calendar month and one by calendar year. It works great in Chrome, but not in Edge or Firefox Chrome: Firefox/Edge:
I have an object (table) that I want to populate with a set of template rows that will be stored in another object (table).The skuid Action framework includes Adopt Rows Into Model, but I don’t find any documentation for it. The adoptRow() javascript function may provide background, but its definition refers to external data. It also talks about matching on Id’s.Let me sketch this out a bit:TARGET OBJECT RecId Name Level Group Factor Data6 Data7 ...<br>----- ---- ----- ----- ------ ----- ----- ... SOURCE OBJECT RecId Name Level Group Factor Condition1 Condition2<br>ab001 1234 &nbsp;1 &nbsp; &nbsp; A &nbsp; &nbsp;Red &nbsp; &nbsp;Thursday &nbsp; Dent<br>ab002 1235 &nbsp;1 &nbsp; &nbsp; A &nbsp; &nbsp;Blue &nbsp; Thursday &nbsp; Dent<br>ab003 1236 2 &nbsp; &nbsp; A &nbsp; &nbsp;Yellow Thursday &nbsp; Dent<br>ab004 1237 1 &nbsp; &nbsp; A &nbsp; &nbsp;Red &nbsp
Hi, I followed the Google Calendar tutorial closely and can’t figure out this error message below. I have my email address as the calendarId. Any ideas what I’m doing wrong? Thanks, Chelsea
I have a second version of our main contact page that some users want to access only during meetings. We've setup a separate SF "app" to limit the number of tabs shown and different versions of custom pages, but can't seem to figure out how to offer an alternative page for Contact View. I can do page assignment only by User profile or Record Type, but it really needs to be filtered by App so users can easily switch back and forth...or a way to add Contact View as an independent VF page (rather than View override)...
This is based on the finding by Tanzir at https://community.skuid.com/t/dynamic-model-createrowifnonefound-prevents-load?topic-repl… When a page that does not contain any declarative models loads, the model service adapters are not being loaded. This results in any dynamic models failing to initialize because the following line of code returns undefined because ‘c’ is empty: b&#46;getService = function(a) { return c[a || f] } In inspecting the resources loaded by the page, when the page does not contain a model, the file skuid__SalesforceAdapterJS is not loaded (no script tag for it). Currently, I don’t think the docs even mention the ability to create dynamic models using other adapters however this problem is bigger than just loading the salesforce adapter as the required adapter that the dynamic model needs would need to be loaded either on page load (not ideal) or on demand possibly during model.initialize() by inspecting the adapterName and checking to see if the
Good afternoon, I am attempting to format phone numbers “live” while users type, similar to how it works in the standard Salesforce environment. Essentially I would want to take user phone inputs like 1234567890 and automatically change that to (123) 456-7890. I have no significant experience with javascript so I’m not too sure where to start here. In an ideal world it would also take 123-456-7890 or variations like that and reformat that properly as well. Thinking about this, it also made me wonder if it could format extensions properly as well. Typically I like to use the format (123) 456-7890;123. Are there any “out of the box” solutions that can help on this front? I’m also open to solutions that don’t do it live (if that is too difficult), but instead do it after a save and refresh. Much appreciated as always for any help. Thanks, Dave
Hi I’m having this issue with different pages and different profiles… I use this page as Page include in a popup in 2 different places and using the same query string For a specific profile, they can see one popup properly(screenshot #2) and the other is giving a Status 500 error (screenshot #1) I looked in console’s network tab, both send out the exact same URL Same issue with some other pages and some other profile… I’m at a complete lost at this point… If I try both (i have admin profile) and can see them both properly… Any help would be appreciated 2)
I’m trying to include the SMS alert that is currently present in my salesforce org sidebar. I’m trying to include it in a queue in a panel but I can’t seem to find the model that relates to the SMS alerts as seen in the picture below. The plan is if an item on the queue is clicked on, it redirects to the general SMS panel. After the redirect that SMS will be removed from the queue. Any help would be appreciated
I need to make a certain field on the table component visible and required only if a certain option from the picklist field on the table component itself is selected otherwise is should not be visible at all to edit.I know this can be done through javascript snippet but i am hard at javascript and programming can anyone please help me with the codei have no idea on snippet building i have gone through the skuid tutorials but dint helped… Also i am short of time need a quick solution to thisAnubha
I’m attempting to loop through the rows in a model I have in javascript. Here is the code I’m running:var params = arguments[0], $ = skuid.$;console.log(‘Oh Yeah!!!’);var modelStuff = skuid.model.getModel(‘modelName’);console.log(modelStuff);$.each(modelStuff.data,function(i,row) { console.log(‘Oh No!!!’);});console.log(modelStuff);Both of my console.log(modelStuff) calls before and after the loop show that the model has two rows with data, but I never get ‘Oh No!!!’This is basically copy pasta straight from an example found in another question here. How can I show data (2 rows to be exact) in both of my console.logs but not ever execute the loop on modelStuff.data…
Hello,we are on UK locale - so week runs Monday to SundayGraph on Skuid page is grouping Friday to ThursdayMakes management reporting very hardHelp!Ben
Hello,I am struggling to figure out how to make the if statements run each time the Status__c field is changed, is anyone able to help me with this? I’m sure it is something simple.The snippet is on the Comments__c field in a table:var $ = skuid.$;var field = arguments[0], value = arguments[1], model = field.model, row = field.row;if ( row.Status__c===“Not Applicable” ) { skuid.ui.fieldRenderers.TEXT.edit(field, value); if( value === null ){ field.element.css({‘border’:‘solid 2px #ff0000’}); }} else if ( row.Status__c===“Completed” ) { skuid.ui.fieldRenderers.TEXT.readonly(field,value);} else { skuid.ui.fieldRenderers.TEXT.readonly(field,value);}
I have a custom renderer that displays edit components for multiple fields in an object: a picklist, a rich text and a checkbox that all appear in a single table cell. My first problem is that I can only get the rich text to render if it is the parameter for the custom renderer (i.e. the custom renderer is on the rich text field). var $ = skuid.$, field = arguments[0],<br>&nbsp; value = arguments[1];<br>var textAreaElement = skuid.ui.fieldRenderers.TEXTAREA.edit(field, value);<br>field.element.append(textAreaElement); That works okay, but only because “field” is the rich text field. If the custom render was on a different field (e.g. the picklist or checkbox), is there still a way to call the field renderer on the rich text? What if I wanted to render 2 rich text fields in a single custom renderer?My second problem, which is more pressing, is that I need to get a reference to the inline CKEDITOR object that has been generated for the rich text field. I need to
I have a simple Image component that is displaying an image, it is works fine except when I add conditional Rendering to it using a custom field, the custom field is a check box and have the logic set as, Source Type: Model Field valueSource Model: ProposalIf no Rows in Model: Ignore this conditionField: Page_5_cOperator: =Content : Single specified ValueValue: Checked (box with a check)The desired effect is that I want to show the image when the box is checked in Salesforce and not show the image if it is not checked.I have found that changing around the operator sometimes makes the image show. I have other images that have same render values and they work fine. I read on here that maybe it is something weird that Skuid is doing with checkboxes as in treating them link a string rather than a boolean(link here -> https://community.skuid.com/t/conditional-rendering-issue-model-condition-on-checkbox-fie…) I’m new so any help would be great.
Has anyone implemented a testing framework for Javascript snippets/resources using a framework like Jasmine.js?
Hey there, Love SKUID! How would I go about creating and applying a mass-action Template similar to the Action Plans Manager (image attached below) I’d like it to be SKUID Native instead of using their managed action plan.
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. Help!
I have developed a skuid page for creating a new opportunity for a record type (New Business). For other opportunities I would like to use the out of the box page layout(Existing Business). How can I accomplish this? I would like to have the following behavior… -User selects to create a new opportunity of type New Business -User is redirected to Skuid page -User selects to create a new opportunity of type Existing Business -User is redirected to out of the box opportunity page layout
I have a visualforce page that redirects to a skuid view of tasks. This works just fine. However when I try to assign that page to a visualforce tab, this error shows instead: You’ve been INKED! (Something went wrong) Skuid was unable to redirect the user to standard Salesforce Page Layouts, and no Skuid Page could be used instead. Here is the visualforce page config: Successful use of the visualforce page redirecting to skuid: Configuration of visualforce tab: Error when viewing visualforce tab: This error occurs whether logged in as system administrator or other profile, sandbox or production, skuid v 7.27 or v 8.19.5. Using Chrome. Note: This was originally reported under another thread, that was marked as answered. Started a new topic to increase visibility.
Has anyone had an issue with Skuid pages not loading in Safari with Mac OS Sierra?
Is there a way to prevent the the addition of an event to the calendar based on a condition such as an event already existing on the calendar.I am already running a javascript snippet before the custom popup comes up to add an event when the user clicks to add an event and I can figure out if the event is new or not.How do I cancel the addition of the event to Prevent the add a new event popup from happening?Thanks.
When a component from a component pack is defined on a popup, the resource files for the component pack are not loading in to the page. This results in the component not working as expected.Notes1) If a component from the same pack is included on the main page, the popup behaves as expected because the component pack files are loaded in to the page.2) Issue will occur with any component pack so simply replace Popup Controller from TFG Component Pack on Account Model -> Create Row Action -> Show popup with a component from another component pack to reproduce using a different pack.3) When the component isn't found, NO error of any type is made available. At the very least, something should be output to the console indicating a component was attempted to be loaded but couldn't be found.Steps to reproduce:1) Download & install TFG Components based on instructions from https://community.skuid.com/t/collapsible-wrapper-custom-component2) Create page using XML below3) Preview pag
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.