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
At the individual item level in the table, the correct values display but when you click on the mass update button it ignores it (vs rendering it relative to record type available in the model)Correctly showing the available values based on record time (on individual records).Incorrectly Showing all possible values in the mass update pop-up.
I haven’t quite seen this in the discussions, so I apologize it there is an existing thread. My problem is this. I have an object (Object A) that contains hundreds of thousands of records in it. Object A acts as a lookup object only and is not associated with accounts, opportunities, cases, or anything like that. I have another object (Object B) that that references Object A through a lookup. Object B is associated with Accounts, cases…all that jazz. The purpose of this structure is for easy record creation for Object B. When someone calls in, we find their information in Object A and create a record in Object B that will tie the account we are creating. I would like to search for a record in Object A table and add a mass action to create a record in Object B with the lookup already populated (lookup that references Object A). How do I go about doing this with a javascript inline snippet?
I have a parent record with Master-Detail child records that have a percentage field. In my Skuid editor, I have the parent record up top and a table with the child records below it. I’m need to create a rule where the child record(s) must exist and always sum to 100% when a Boolean field in the parent record is checked. I’ve been trying to do this with SF validation rules, but I’m getting nowhere. Is there some way I can do this on the client side with Skuid, or am I missing something on the validation rules side? The SF parent validation rule I tried looks something like this if it helps: IF( AND( NOT(ISNEW()) , Require100percent__c = TRUE , SumOComponents__c <> 1.0 ) , TRUE, FALSE) Thanks for the help. Skuid is looking awesome still.
I can refresh a Field Editor with something like model.registeredLists[17].renderedItems[1].fields[0].render() ;Is the template component a list like the Field Editor and Table components?Jacob
Are there any limits to the number of children that can be cloned along with a Parent record?We’ve run into issues with some of those AppExchange “deep clone” tools in the past where there was a hard stop at 100 children per parent.Curious to hear how Skuid is able to deal with large parent/child relationships.Thanks!
How do I insert a blank space onto a page?
Is there a way to create a button to allow following on chatter?
Mostly because I don’t know how 🙂I have a script which works fine when pasted into the console, but I would like for it to run on Page Load.var params = arguments[0], step = params.step,$ = skuid.$;var userModel = skuid.model.getModel(‘User’), user = userModel.getFirstRow(), weekUpdateModel = skuid.model.getModel(‘WeeklyUpdate’), weekUpdate = weekUpdateModel.getFirstRow();var userAlias = user.Alias + ’ Update - ’ + user.Today__c;weekUpdateModel.updateRow(weekUpdate,‘Note’,userAlias);$.each(weekUpdateModel.registeredItems,function(){ this.refreshFields();});Thanks,Jacob
I can easily pre-populate a field with a value from another model’s field using a condition.Is it possible to use multiple fields to do the same thing? Example: Record Name = {{User Alias}} & {{TODAY’s DATE}}Jacob
I am trying to create a toggle filter that when two string fields are equal it shows those records. As the filter stands now I get no records but I know there are records. Can you please help me figure out what it is I am doing wrong.Thank you!
Basically, I would like to be able to use a comma separated list of the names of invitees along with the subject on my event calendars. I’ve tried adding the EventRelations child object of the Event object, but can’t seem to reference anything in it with the Event Template using mustache. Is there a way to do this? Thanks!1st post!
How do I pass id parameter from one tab to another tab? I have 2 tabs; in first tab I have master records. In 2nd tab I have a Queue component with detail page. 2nd tab queue component should display a detail record related to item selected in first component. I am able to go to 2nd tab with below code, but it is not filtering the record in the queue of 2nd tab.apex/skuid__ui?page=pageName#TabNameI am trying to navigate Mater (tab 1)—> Detail (Master of another detail)—> Detail (tab 2)
Natively, salesforce includes Notes directly related to the Account, as well as those related to child objects (at least Contacts as well).Is this possible, using a condition to include Notes with the same Account ID as well as those associated with Contacts of that account?Thanks,Jacob
I know I can use a merge variable like {{$Model.Contacts.data.length}} to insert the model count in the tab label, but using your Account Detail page, you suggest listing both Tasks and Events separately.Is there a way to sum the number of Tasks & Events in the tab label?
When using a Basic model, you can specify “Allow Ordering” on fields to allow the user to be able to interactively order their tables. However, I don’t see that option when using an Aggregate model. I can specify the sort order on the model for my fields … such as “COUNT(AccountID) DESC” and that works fine. But I don’t see the feature to let my users do that interactively.Is this possible … or planned for a future release?Thanks,- Chris
I’m trying to use a “Page Include” Component on a page, but keep getting my fields/components duplicated on this included page. (i.e. I get one set with the correct values I have in my record, and another set that is blank).I’ve played around with changing the conditions on the included page, as well on the “page include” component (“advanced settings” tab).Here are the settings I currently have in use:For the Original Page:And for the Page Include:And, actually testing it now, I must have changed something – since I’m only getting blank fields in my included page.Anyone have advice? I have a feeling I’m missing something simple/fundamental…Thanks!
I want my users to notice right away when they are making a mistake. We have a table of Project records, which includes a field showing the amount of revenue we have remaining to recognize. We have another field, “Current Month Estimate,” that we use to estimate how much of this remaining revenue we’ll be able to recognize this month. If we only have $500 remaining to recognize, and a user types in $90,000 in the estimate field, I need something to happen. Since I can’t send electrical shocks through salesforce, I am hoping I can use some kind of skuid javascript magic to prevent the user from making this kind of error. Validation rules are not an option. It would be great if it were a real time error popup or rendering the background of the field red, or preventing a save to that row and showing an error message…Any ideas?
Is there any way in the mobile builder to remove to “Showing Rows 1-1 of 1” especially when pulling up user data for example?
Hi there,After overriding our ContactDetail page using the tutorials provided by Skuid, I noticed a strange error… I can only view the new Skuid page from a System Admin profile.Every other profile or user receives the following error:“Implementation Restriction: activity aggregate relationships only allow security evaluation for non-admin users when LIMIT is specified and at most 500”I have attached a screenshot of this error.Thank you for your support,
I am trying to create a work scheduling Calendar and need to be able to filter the calendar based on users, ie., so we can see what each user has allocated within their current Calendars. Not being able to filter the calendar on user means there is too much in the calendar to be able to see where the gaps are and thus schedule in work. How can I add a filter to allow the Work Schedule to filter the calendar by User ?Thanks
We have a table of all the latest tasks appearing on our home page so people can see what’s going on. I’d like to add two row actions - one that pops up the individual chatter post for that specific task, and one that pops up all chatter posts for the account the task is assigned to. I was following the instructions here, but I get a “URL No Longer Exists” error message instead of loading the chatter feed. Any idea how I can set it up correctly?The table itself is based on the Tasks model - not sure if that makes a difference.Thanks!
Okay, so I am not 100% certain how best to skuidify a particular page in my environment. We use a product called E2CP (E-mail to Case Premium) to send e-mails to the customer, and they use a VisualForce page that contains all the relevant fields for their product, as well as a simple block of the VF page that allows me to add my own custom fields.For obvious reasons, I’d like to be able to turn this into a skuid page, but I am not sure how best to approach it. I could clone the VF page and try to edit it to include skuid components, but I fear that would mostly just be a wrapper around the problem.The E2CP VF page is what (to the best of my understanding) fires off the triggers when I send an e-mail, so simply adding new information into the Body of CaseComment will not fire off an e-mail, and the E2CP SObjects don’t seem to contain a ‘comment’ section.I’m not sure that I am looking for an answer, so much as guidance on how best to proceed, since I don’t know if anyone else has ever ru
The requirement is to create a “Row Action” on a quote table. Which simulatesthe ‘Create PDF’ functionality in Salesforce.I currently have a Row Action that redirects to the generated quote pdf. (/quote/quoteTemplateDataViewer.apexp?id={{Id}}&headerHeight=145&footerHeight=49&summlid=0EHi0000000Xzbo#toolbar=1&navpanes=0&zoom=90) But I cant save it to the quote. Is it possible to accomplish this functionality within Skuid UI
Is it possible to write a snippet to retrieve quote line items from a quote? The page containsonly Quote Model and a related task table. I would like to copy all quote line item details into a new task description field?
I have a use case where we want to sign input by drawing a signature on a iPad screen and store it in Salesforce as a SKUID-image or attachment. I did a quick search of jQuery plugins with matching functionality and found a few. If you have used any of these I’d appreciate feedback or recommendations on choice of plugin and if anyone has sample code for using with SKUID that is of course even better. These are the plugins I found:SignaturePadjSignaturejQuery UI SignatureSignature PadWe might need to send out copies of the signed documents with SF email templates so storing as an image is probably better than storing a JSON object.
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.