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 have a Model that has several different “value” fields that I want to display in a table. The user should be able to edit one or more of these value fields based on the value of a “type” field. In most cases, only one value field needs to be edited for a given type, but in one case there are several fields used to express a “single” value. I don’t want to show all of the value fields, though, because most of them will be irrelevant/not applicable for a particular row.For example, a row with a type of “date” should allow the user to edit the “date value” field, but not the “number value” field.How can I achieve this in a Skuid Table?
I created a form using Skuid. Can anyone point me to a reference on how I can have public access to this on my website.
I have a picklist field, ReferralType__c, that I want to set to a certain value (that the user can see, but not change) if a condition is met. I’ve added a custom renderer for this and the value appears to be set the way I want in the UI, but when I save the record, Skuid says “Required field has no value: [Referral Type]” (I have the field marked as required in the Skuid page.Here’s my snippet: var field = arguments[0];<br>var value = arguments[1]; var acc = skuid.model.getModel('Account').getFirstRow(); var referrerType = skuid.model.getModel('Account').getFirstRow().Type; if (referrerType !== 'Group Coordinator') { skuid.ui.fieldRenderers.PICKLIST.read(field,'Individual'); return; } else { skuid.ui.fieldRenderers.PICKLIST.edit(field,value); return; } The if statement is the culprit here - if it goes to the else statement, the field is rendered as a picklist and everything works fine. How can I get the if statement to work correctly?I’ve included a screenshot too, in case that
i want to add follower button to the row action ,how can i achieve that…any help…thanks
how to add no of related records no related object same as we cxan se no of records present in the related oblist.
The development and release process we implement is the following: each developer has its own Dev org (we use Git) and all approved changes are deployed into a common Developer org, from there we deploy to QA org and finally to the Packaging org (the one with our managed package namespace and linked to our Appexchange account). Our app will be distributed through Trialforce only so no post-install scripts are available.I wonder how should we Skuidify our entire process because so far in the docs are straight forward instructions for the scenario to develop the app directly in the packaging org right?
We’re using the Skuid Chatter Feed component and understand that under the hood it is using the VF chatter:feedWithFollowers. We’d like to build something similar that uses VF chatter:newsfeed component instead but also allows pass-through of attributes, e.g. create a new . It’s probably very similar to the component or an extension of it but there is a more powerful use case here where it could be other VF components like flow:interview which would allow embedding of visual flows within Skuid. How do you build such a component or is there an easy way to “include” VF components in a Skuid page? I’d be happy to share the newsfeed custom component for others to use if I can get it up and running.
I want to create a field that is text on edit but reads as a URL. The text would be something like this:Patient1234BRADLEY The URL should prepend some text to become:O:PatientFoldersPatient1234BRADLEYI’ve got the expanded URL and have figured out how to display text on edit and the longer URL on read, but I just don’t know how to turn it into a link. var field = arguments[0], value = arguments[1];if (field.mode === ‘read’) { var URLValue = 'C:\PatientFolders' + value; URLValue = URLValue.replace(//g, ‘/’); skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;} else { skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; }
Recently, I’ve been plagued with the error described in this topic: https://community.skuid.com/t/cannot-access-skuid-page-due-to-error-failed-to-parse-xm…I’ve upgraded to the latest Spring 14 release, but I’m assuming that there is still some invalid XML in my pages? The error has been occurring frequently and is really slowing down my ability to continue development.I’ve granted Login Access to Skuidify LLC Support, and would greatly appreciate some assistance in parsing the broken XML on two of our pages.
When using the new Theme Paper or Modern, in Chrome 36.0.1985.125 m, the quality of the font is quite poor. This doesn’t happen in IE or Firefox.At 100%At 250%
I have a Popup that has a child-Popup. on this child-Popup there is a Reference field that I have as Auto-Complete. When it finds results, it is showing them behind the popup.
Congrats to the team on the release of Summer '14 RC - Features are looking great! Regarding the new Actions available on Models, Buttons, etc., is there a way to stop further actions from occurring from within an action?For example:Page Title Button has a multiple actions assignedAction 1 - Run snippetAction 2 - Run snippet/Save Model/etc.Questions:1) Is there a way to ensure that Action 2 does not get called if Action 1 fails? If I “throw” out of Action 1, Action 2 will not get called but then a javascript exception goes unhandled.2) Along these lines, if Action 1 is a stock skuid action (e.g. save models), what happens to actions that follow if the action fails? It appears that if the Action is “Save Models” and it fails, no further actions are triggered. Correct? if yes, is this true of all stock actions where if it fails, further actions will not be triggered?The use case is as follows:Action 1 - Validate certain data points on models (e.g. business rules essentially). If va
I’ve tried to tweak previous similar solutions to fit my use case, but just can’t get it to work. I’m new to javascript and am probably making a silly mistake. I am saving a parent object (Shipment) and child objects (ShippingRecords). Once I save, I want to redirect to the the shipment (the first row in the Shipment model). The snippet below is called from a button on a page title component where the model is Shipment. I’ve included my entire snippet for reference, but the part I think I need help with is bolded below. I’m not sure if I’m doing the merge right, or if I need to put that piece of code elsewhere. Thanks, as always, for the help. var params = arguments[0], $ = skuid.$; var models = skuid.model.map(); var ShipmentModel = models.Shipment; var TheShipment = ShipmentModel.getFirstRow(); var shippingrecords = models.ShippingRecords; ShipmentModel.save({callback:function(){ var Direction = TheShipment.Direction__c; var Status = TheShipment.Status__c; var ShipFrom = Th
I have a skuid page with a table based on my Accounts that I would like to export to csv.In my Account object I have a textfield PersonOtherStreet, which can contain multiple lines.In my table I have a template field called address that puts together several fields of my Account object including PersonOtherStreet to format the adress according to different rules. For testing purposes I also put the PersonOtherStreet field separately in the table.When I export my table to csv, all newline characters inside my template field are removed to one line, which completely destroys the formatting purpose of the template. Contrary, the newline characters are preserved when I just export the PersonOtherStreet field separately.I could manage to manually set the newline characters by manually putting a placeholder string for each newline “/br”. See my template code:{{#PersonOtherStreet}}{{#PersonTitle}}{{PersonTitle}} {{/PersonTitle}}{{^PersonTitle}}{{Salutation}} {{/PersonTitle}}{{Name}}/br{{Perso
In Account i have Billing address and Shipping address.if the shipping address is null by pressing a button need to copy the billing address into the shipping address.
Is there any published event for the (checkbox) selection of a row in a skuid table?I don’t see any here http://help.skuidify.com/m/11720/l/241020-skuid-events
Hi, I have a requirement of getting a Reference field as a Picklist on ‘edit’ mode and Completely removing/disabling the hyperlink (to native salesforce UI) on ‘read’ and ‘readonly’ mode using javascript snippet. I wrote following snippet to address the issue: field = arguments[0], value = arguments[1], $ = skuid.$; skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value); //If we are in edit mode render the reference field as pick list if(field.mode === ‘edit’) { field.options.type = ‘REFPICK’; skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value); } // If we’re in read or readonly mode, then remove hyperlink if (field.mode !== ‘edit’) { var linkTag = $(‘a’, field.element); if(linkTag.length){ var output = $(‘’); output.append(linkTag.html()); } linkTag.replaceWith(output); } This code works fine in all scenarios except ‘edit and cancel’ scenario. When I edit a record (inline edit ) and cancel without saving it the hyperlink reappe
I saw the other questions about ISV app but to expand on those how does this work for using an AppExchange Test Drive and for Trialforce? We have Skuid in our Developer org but what do we do about Test Drive and Trialforce so we can display our pages there?
We do our billing for the previous month a week or two after the end of the month. SO for instance it is August right now. When my end users click on the date field it defaults to August so they always have to click the back arrow on the calendar once for each record. Is there a way to default the calendar selector to always show the previous month?Thank you!
I’m following this tutorial http://help.skuidify.com/m/getting-started/l/102647-override-a-standard-salesforce-tab-page-layout And I created a VF Page ‘RamoTab’ with the code: <apex:page standardController=“alas1__Ramo__c” recordSetVar=“c” extensions=“skuid.Redirects” action=“{!redirect}?page=RamoTab”> </apex:page> But when trying to override the default Tab (Step 8 of the link) my page is not listed. If I try to override the List instead of the Tab I do get the page listed. What am I missing? Consider that: I’m on an org with namespace ‘labs01’ which has Skuid installed and my ‘alas1’ managed package as well. The VF page ‘RamoTab’ is under ‘labs01’ namespace.
I am trying to have a system modstamp on an individual opportunity whenever the last task was edited but when I place the modstamp with the task module it is creating a modstamp for every task on the opportunity. Is there a way to only pull the last system modstamp?
When building mass edit UIs we’ve encountered slow performance of the createRow method when creating hundreds of records. I’ve attached a basic page that performs increasing volumes of mass row creation, the results I get show 2s for 100 rows and 144s for 1000 rows. Putting aside the wisdom of why we want to create 1000 records, even 100 rows takes too long and he results are not as linear as you’d expect: Created rows: 1 in 0.023s = 0.023s per row Created rows: 10 in 0.142s = 0.014s per row Created rows: 100 in 2.257s = 0.02257s per row Created rows: 200 in 6.898s = 0.03449s per row Created rows: 500 in 37.399s = 0.074798s per row Created rows: 1000 in 144.617s = 0.144617s per row Our use case is a mass edit table that allows users to “preview” and “configure” a large table (100s of rows), perform some calculations and then save that data to Salesforce for output in an Excel document. We experience sluggish performance when we loop through our data and use createRow to build the tran
I have 2 Record Types for Account: Persona Fisica and Persona Moral. I have 2 Skuid pages AccountMoralEdit and AccountFisicaEdit, both are used for new and edit. I have the following Page Assignments: Account / New / Org Default / Persona Fisica / AccountFisicaEdit Account / New / Org Default / Persona Moral / AccountMoralEdit Account / Edit / Org Default / Persona Fisica / AccountFisicaEdit Account / Edit New / Org Default / Persona Moral / AccountMoralEdit And the following VF Pages: AccountNew <apex:page action=“{!redirect}&objecttype=Account&actiontype=New” extensions=“skuid.Redirects” standardcontroller=“Account”></apex:page> AccountEdit <apex:page action=“{!redirect}&objecttype=Account&actiontype=Edit” extensions=“skuid.Redirects” standardcontroller=“Account”></apex:page> And the Account Action Overrides: Edit → VF Page: AccoundEdit New → VF Page: AccountNew The problem I have is the following: when I create a new Account of record type ‘
I have found some good examples of creating a Custom Picklist from a Model:A drop down list from a custom settingCustom picklist renderer when option source is a modelBut my wanton appetite is on the lookout for a version for Lookups. Taking the same idea, a Model for the source data, instead of a Picklist, I want to render a Lookup.
Hello again! I’ve a snippet which spits out a random selection of rows from a model but, to tidy it up, I need to know the total number of rows in a model (on the contact object).I can’t use a roll-up summary on the account as it doesn’t work for the contact object so this needs to be done in javascript - is there a nice way of doing this using the API - or do I loop through the rows and count them?Cheers!
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.