Upcoming Event - Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
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!
Hello!I’m trying to update selected rows in a table after having saved a new record in a different model - and I’m trying to do this in one fell swoop using a mass action button on the table.I’m using a callback because I want to reference the newly created record in the updates to the rows in the tables by inserting the ID into a lookup field on the selected records, however, when I use getSelectedItems to fetch the selected rows in the table I’m getting the following error:Uncaught TypeError: Cannot read property ‘getSelectedItems’ of undefined I’ve tried moving the getSelectedItems section below the callback which also didn’t work. The saving of the record is working as I can console.log the ID of the saved record.I’m sure I’m doing something daft - any ideas? Here’s the snippet with the pertinent section in bold: var params = arguments[0], $ = skuid.$, reqBooking = skuid.model.getModel('RequiringBooking'); var newBooking = skuid.model.getModel('NewBooking'); var listBooking = skuid
Hello …I would like to use custom field renderer on a reference field . I am able to use custom renderer but I was not able to change the displaytype to picklist. Is there any way to change the displaytype from reference to picklist from JS snippet. Thank you.-Jnanendra
I’m working on adding some custom text fields to a few objects and just realized that skuid does not appear to enforce the max length of a field in the UI. For example, I have a text field with a max length of 3. When I add this field to my page, I can type more than 3 characters into it - it’s not until I hit save that I get any kind of error about the length. Does skuid not detect the max length upfront? I’d rather users not even be able to enter more than the maximum characters allowed. I can probably handle this via a custom renderer, but that means I’ll need to use a custom renderer for most of my text fields. Is this on the roadmap for a future skuid release?
We have made our own calendar through skuid and one of the options we would like to add is creating a recurring series of events. When making a new event on the calendar, however, the check-box is grayed out not allowing me to check it. This is preventing us from creating the recurring series. If I make a new skuid page and put the same field there it does allow me to check it and create the event. This issue happens only when creating an event from the calendar. The image below shows my problem. Thanks, Michael
I have the following URL:https://skuid.cs18.visual.force.com/apex/skuid__ui?CaseId=50011000003AQptAAG&page=CaseDetailsModelI am using a Global Action and creating an Attach a File to the Case. This is a redirect actionwith regards to the retURL I have tried the following:/p/attach/NoteAttach?pid={{$Param.CaseId}}&amp;retURL=%2F/apex/skuid__ui?CaseId={{$Param.CaseId}}/page=CaseDetailsModelAND/p/attach/NoteAttach?pid={{$Param.CaseId}}&amp;retURL=%2F/apex/skuid__ui?CaseId={{$Param.CaseId}}&page=CaseDetailsModelAs I want the return url to be: /apex/skuid__ui?CaseId=50011000003AQptAAG&page=CaseDetailsModelIt works fine to have the return URL to contain CaseId={{$Param.CaseId}} OR page=CaseDetailsModel but I don’t know how to include both in the return URL.I want to return the URL and have the correct page showing, would you know how to do this.Also for the Save and Cancel buttons on standard pages.i.e. If the user wishes to edit a case, then I have the skuid page redirec
I’m using a field form a child relationship to the model and am including it in a table via template. The data being returned is duplicating itself though. I’ve attached what is going on. How the template is set and the results. Any help is appreciated.
I would like to add this expandable text box javascript into my skuid page, but when I tried to add it as an In-Line snippet javascript resource it did not display correctly. I added the code from this link https://bgrins.github.io/ExpandingTextareas/expanding.js into the snippet body and then rendered the field using the snippet but when I load the page the text in the text box is gone and I can not type in the text box. Any ideas? I originally got the javascript reference from http://bgrins.github.io/ExpandingTextareas/
Hi there, This seems like it would be quite simple, but I have not been able to find a way to assign the “Sum” from a Column Summary to a Field. In the image below, I have a custom object that tracks ‘Payments’ related to a ‘Contact’. Ideally, I would like to assign ‘Summary A’ and ‘Summary B’ to Fields on the Contact model. Finally, I could have a Formula Field on the Contact called ‘Payment Balance’.‘Payment Balance’ = ‘Summary A’ (minus) ‘Summary B’ Any help or suggested alternatives would be greatly appreciated.
I am trying to render a list of records (model = MedRecs) using the ID field of newly created record (model = Shipment) as a Condition.My first model is called Shipment. Because I want to create a new Shipment record, I’ve set “Create Default Row if Model Has None” to TRUE and “Load Model Data on Page Load” to FALSE. Max # of Records = 1. The user fills in some fields for the Shipment model and saves. My second model is called MedRecs. MedRecs are displayed in a table below the Shipment field editor. The table is conditionally rendered: it does not show up until the new Shipment record has been saved. When the MedRec table does show up, I only want it to display records where a lookup field on the MedRec (MR_Holder__c) matches a lookup field on the new Shipment record (Ship_From__c). I’ve tried to build the MedRec condition many different ways: MR_Holder__r.Id = (Shipment)(Ship_From__r.Id); MR_Holder__c = (Shipment)(Ship_From__c). If I set “If no row in Source Model, then…” to
HI All,I am totally new to skuid. What I am trying to do is : - I have 2 fields on an Object, Division & Sub Division. There is no really dependency setup for these two fields.- I created a tab view in skuid and tried to filter the rows by Division & SubDivision, Individually it worked good. But I wanted them to be dependent Like : If I select Division = APAC, The subdivision avaiable picklist values should be refreshed and show only APAC related subdivisions.I figured out on myself that Custom JS is the only solution started up as below :var params = arguments[0], $ = skuid.$;var productModel = skuid.model.getModel(‘Product2Data’);var allProductData = ;allProductData = productModel.data;var i = 0;for(i=0;i<allProductData.length;i++){var productRow = allProductData[i];}// Static Code that I am looking to generate dynamicallyvar filterItems = ;filterItems.push({ label: ‘Cheese’, value: ‘cheese’ });filterItems.push({ label: ‘Pizza’, value: ‘pizza’ });return filterItems;Now I
I have a pop-up that creates a case. When I save the case record I’d like to give the user the option to create a related task. If they opt-in to creating a task after creating the case I like the case pop-up to go away and then a new pop-up to appear with a task creation page.Can someone drop me the javascript code to render a new pop-up?Thanks!
I built a pop-up window that allows a user to create a case. There is a picklist of the available record types for the user to choose from to determine the department they want to create a case for. I want to filter the list of available case record types in the picklist, whats the best way to do that with Skuid?Thanks!
I am using the Skuid Calendar extensively to track medical appointments between account and contacts (Doctors). I am also using it to track vehicle sign out for those appointments. The record name of the vehicles is the VIN number. The “whatid/name”, which is the VIN is not incredibly helpful for those looking at e calendar. People relate more to colors, makes and models. I have a concatenated_name__c field on the vehicle record which is the name I want to use “4903 Red Sienna 2014” or a Nickname field. Is there any creative ways to display these names on the “Event Template” of the calendar event? By default when using event I can’t access them. Is there any other trickery I can use to access them and display them on the calendar event using the “Event Template”? Thanks!
How do I format multiple models within one table? Model 1 within current table: Account Name; Request Summary; Request Detail. All from Accounts. These display as I would like in single rows.I would like to add a column for Next Event Date, presumably from another model based from Events.Thanks,PSB
Hello,One of our users has a Samsung Tablet and when he clicks on a file upload field (plus sign) it will not prompt him to take a photo or choose a photo. I have tested on an iPhone and iPad and it works fine. Is there a known issue with this device?Thanks,Chelsea
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.