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
I am trying to default the Shipping and Billing Address of a Quote with the Shipping and Billing Address of the Account related to the Opportunity related to the Quote. Shipping address is populating but billing address is not. I have other conditions are well for default other fields. Overall I have 14 conditions with only first two for grouping logic. So my question is whether there is a limit of how many conditions I can have in a model.
When clicking a button I need to change the button text and icon. I 've figured out how to change the text: var params = arguments[0],<br> $ = skuid.$;<br> <br>// do stuff here - then change button text<br> <br> var btn = params.component.button.text[0]; <br> btn.innerHTML = 'New button text'; However I can’t find a way to change the icon to another of the font awesome icons. Is there an easy way to do this?
so i have a list of course levelswhen i assign them to a course I’m using an autocompletebut the level is a single character “A”so the autocomplete won’t “complete” it
I have a table of contacts.I would like to be able to filter these contacts based on a table filter, using values of a ContactTags model, and then using the selection as the value of a condition.This condition would limit the Contacts to only contacts with that selected tag.I just started down this path when I hit this error in a preview: 1. An error occurred while attempting to perform the following SOQL query: SELECT Id,GCP_Interest__c,Name,Birthdate,Account.Name,AccountId,CreatedDate FROM Contact WHERE (Id in (SELECT ItemId FROM ContactTag)) LIMIT 101 Error:Entity ‘ContactTag’ is not supported for semi join inner selects .Is this a hard stop on one of Salesforce’s unqueryable objects, or am I approaching this the wrong way?Thanks,Jacob
I am thinking about having a table of contacts, being able to check a box next to appropriate rows and create activity records for each of those rows.Having the same values for each of these activities (beyond WhatID referring to parent contact) is perfectly OK in this example.I imagine there is a moderate amount of JS needed, just curious if someone has tackled this.Jacob
HiI’m building my first lead page in Skuid. Default Salesforce page has a ‘change’ link next to fields such as record type and lead owner.I can’t seem to replicate this in the Skuid page - the field appears as a read only field and can’t be edited inline.Any help?Erin
Can someone please point me in the right direction?I am trying to import a page using the view/edit xml but in my new page the option isn’t available.The text is there but grey.Help?
Skuidians,I’d like to capture the sort order a user sets for a table. Is that possible? Alternatively, could I have a field determine the column ordering of a table?For example, I have a column in a table labeled “Ranking”. If I change it from descending to ascending I’d like to update a field. Or can I have a field in a model control the Ranking sort order or which column I am sorting by.Thoughts?Thanks!Peter
I created a Skuid mobile app and created the related VF Page with the redirects. It works and looks fantastic on Salesforce1 for Salesforce standard user license but when logging in with a Force.com user license the page does not appear in Salesforce1. I have checked that the Force.com profile matches the SF user profile and the necesary Skuid API and permission sets are set for the profile to view Skuid pages. I have also checked with Salesforce that Force.com user licenses can make use of Salesforce1 full funtionality. What am I doing wrong?
Hello all, I am new to Skuid and have been having trouble with filters lately. I’ve created 2 queues from the standard Accounts and Contacts objects and would like to filter my contacts queue based on an account queue selection. I only want those contacts that belong to the selected account to be populated in the queue. Is this something that I should be able to accomplish with Query String? Thank you for your help.
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
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.