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
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
Hi There,By default, the Popup is loading with 400px height.How can we set the height we want ?
I am using a mass action to trigger process builder to send an email. Is there a method to do this for more that 10 records using skuid mass action? 16:06:30.345 (6826671460)|EXCEPTION_THROWN|[180]|System.LimitException: Too many Email Invocations: 11
We have partners that are only allowed to install certain products based on criteria set on their account record. The criteria is set programmatically in a text field which results in a comma separated string. We want to only display products via a model condition on the product model where the product type (picklist) on a product record contains one of the values set in the string. Is there a way to do this? I’m able to get it to work if the string only contains one value but if it contains two or more, nothing is returned in the product table…Here’s a bit more color:Installer X can install product types A & BInstaller Y can install product types B & CInstaller Z can only install product type AProduct type is set on the product record in a picklist and each product only has one type (A, B, or C)So when Installer X is the partner on an Opportunity (via related lookup) our rep should only see products A and B in the product table.I’m open to switching the product type on the Ac
I have Estimate and EstimateLine Objects. EstimateLine is a child and Estimate is a parent. “Estimate__c” is a look-up to Estimate object. Whenever I clone the page, it will clone Estimate but show error on EstimateLine “‘’ error on qeury: Select group, name, … from EstimateLine .where (Estimate__c =‘clone_1’)‘’‘’ , invalid Id field ‘clone_1’ . I have a condition in estimateLineModel ” EstimateLine records where Estimate__c is a id field from the first row returned from EstimateModel"My clone button action url : “/apex/EstimateDetail?id={{Id}}&clone=1”I don;t know why its grabbing ‘clone_1’ instead of actual Id ?
Hi. I deleted some fields in Salesforce and after removing them from my model, I’m still getting error messages saying that the model is requesting the fields and cannot find them.I’ve searched the xml for the deleted field names and they’re not there. I’ve also copied and pasted the xml into a new page with the same result. I’ve also cleared the browser cache, etc.Any ideas out there about what might be going on? Thanks!
I am using the calendar control and I have a situation where the comment_preview__c is not changing after save. It keeps saying “New Event”.I am using this value in a snippet to figure out if its a new record or not…Is this something I have to change programatically when saving?Please advice. If I refresh the whole page then it works.Thanks.
Do you have more information other than a sentence describing what these changes include?
Hi, I have filter on opportunities which displays the list of Opportunities closing this month or next month and so on. Now I want to filter the opportunities based on the Quarter. So, i want to track the list of opportunities in Q-1, Q-2, Q-3 and Q-4. My issue is, I am going wrong while creating the conditions for it. So for us, Q-1 is from july to september and the condition that i added is: This condition is displaying opportunities whose close date is exactly on July-1-2016 and sept-30-2016 but not the opportunities with close dates between July and September months. How to create a filter which shows all the opportunities whose close date is between July and September. Thanks. -Avinash
Recently some of our users reported that in Chrome when they enter notes in a rich text editor they still get our custom validation errors stating there is no data in the editor. It's been working fine for them in Chrome.When debugging the issue, we found the version of Rich text editor they saw is different and appears outdated. Users with no issues see the version with less controls. Clearing the browser cache fixed the issue. Do you know why this became an issue recently? Anything we can do to force an update of the rich text editor to the latest version from the product side?Thanks!
Hi All,Could somebody please let me know that is it possible to Add SKUID page as a related list on standard page of salesforce?For example, what if I want to create Lead page in SKUID and displaying it as a related list on Account Page of Salesforce.
I’m overriding the standard tabs and using a combination of a link and javascript to switch between tabs. For example: My Inbox ({{$Model.CasesCountSum.data.length}}) My question is whether I can change the css of the above text (e.g. to bold) when that related tab is selected/active to replicate what currently happens on tabs?
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.