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
Have a table row action that displays a drawer. The drawer contains a tab set and each tab set has a field set. The field set(s) have the standard Save / Cancel buttons. Desire to have the drawer to remain open when clicking Save. Any guidance is appreciated. Regards, Irvin
I am receiving the following error: Here is the Scenario: I am trying to print a page using the following jQuery PlugIn: The plugin is supposed to bring up a page with a preview so it can be printed. I tested the plugin in a simple page and it work correctly as shown here: However, when I try to use it in a more complicated page, with multiple tabs, and a page include I get the error: I know it has to do with security and the cross browsing security rules. Any help is appreciated in order to help me set this correctly. More Info: In the more complicated case, I have the printPreviewJS loaded in the parent of the page include and not in the page include itself. The reason is because if I include it in the page include it doesn’t load. It only loads from the parent page. Thank you in advance.
Have implemented a page to manage Quote Line Items. This page is modeled after the Action Framework (AF) Deep Dive where: 1) Use a prototype QuoteLineItem to select default values e.g. Quantity, Shipping Type,etc. 2) Instead of showing a table of PricebookEntries, I have a custom junction object of Product / Plant Association records. 3) The user filters the table by Plant and then selects to Add the product as a Quote Line Item 4) One of my actions is to Create new row in Model (QuoteLineItems) and set default values. One of the required fields is PricebookEntryId. Since my table of products is using a custom object, how do I look up the corresponding PricebookEntry record? Note that I already have the PricebookId from the Opportunity and Quote. Any guidance would be very much appreciated. Thanks, Irvin
I am trying to render a lookup field and have it render as a picklist. I am getting the record I want returned but I have to click on the arrow for the picklist to select it, even though it is the only record returned. Is there a way for the record to automatically become the selected default value?
I uploaded the Opportunity JS and created the Opportunity Overview page. Everything seems to be working except the pop-up for Create New Opportunity in Pop-Up.
I created a new Tab in Salesforce and the tab label is “Mini Console Views” Object name is “Mini_Console_View” and API name is “Mini_Console_View_c”. I’ve created a page that has have the ability to view Contact, Task, and Case as well as add new Tasks and Cases. The idea is to create a screen pop with this page. The skuid page I created works in preview but I’m trying to override the standard page with the visual force page and this This is where I am having issues, when I go to create a new Visualforce page, I assume the standard language doesn’t apply. I think the standardController is why its not finding the page.<apex:page standardController=“Contact” recordSetVar=“c”extensions=“skuid.Redirects” action=“{!redirect}?page=ContactTab”>Thanks in advance for your help.
Is there a way on a Skuid table to see the total number of records that meet the conditions of the model without loading them all? With a Salesforce list view, you can display 25 records, but also see how many are in the list. In a Skuid table if you are only loading 50 on the model and you have more records in the model, you have to continue to press load more until you get all of the records visible. Instead of the bottom of the table saying, “Showing Rows 1-50 of 50+” could it say, “Showing Rows 1-50 of” and then the total number of records that meet the criteria?Salesforce List ViewSkuid Table
Hi - so I have a pop-up that is used to update address fields on a record. When I save the changes and close the pop-up, I want to refresh the original parent record on the page. I’ve tried adding in a Query Model action on the button that activates the pop-up - assuming it would action after the pop-up closes, but it actions right after the pop-up opens.If I had a separate Refresh button that re-queries, then that works fine after the pop-up has closed - but I really want to have the refresh when the pop-up saves and closes.Thanks
We help people with intellectual disabilities. In every office there is a big board that lists all the homes in that region and then it has pictures of the clients in each home. We thought it would be a cool use case to replicate this in Salesforce with Skuid. I currently almost replicate this with a list of houses and table drawers. I.E. I have houses with an address and then I have a table drawer that displays the photos of the clients assigned to the house. Is there a way to have the table drawers open by default so I end up with a list of houses and clients. Or is there a way to click a button and open all table drawers at the same time? What if I wanted to fit as many houses and clients on the same page to limit scrolling could I do 4 rows by however many columns would be necessary? To clear it up a little here is an obfuscated view of roughly what I am looking for. I blurred the picture for privacy issues. This was a board created in excel by one area. Thank you for the h
Hi All, I’ve been invited to show Skuid at the Ottawa Salesforce user group. There are couple Salesforce MVPs that regularly attend, so I’d like to make sure I’ve got some good stuff. I’ll have some things of my own but don’t have anything on the calendar, wizard or custom components. If anyone has anything they’d like to share I’d very much appreciate it. I’ll be sure to give credit to you as well. Also, Rob, I’d like to have someone from Skuid available to answer questions. Can you pass this is on and let me know. Thanks.
I’m sure this is something I am doing but I have created a Queue called Tier 2; its the only one selected and I have it set up to send email to members and Queue email address with 2 members. I have also created an assignment rule that states when a specific field is checked, assign it to the Tier 2 queue. I have messed with this all day and I can get one single email sent out. We are on professional so I cant use workflow. I need help.
I’m looking to get further understanding on conditions. When a model has been loaded and then the condition value changed, does the model have to be requeried in order to display related records?
I have a table of Appointments on the model AppointmentInteraction_Table. I have a Row Action on that table runs multiple actions: Deactivates model conditions for the AppoinmentInteraction_Detail model and the Interaction_Attachments model, then activates and sets the value of those conditions to the appropriate id, and finally Queries both models. Here’s my table: <skootable showconditions="true" showsavecancel="false" searchmethod="server" searchbox="false" showexportbuttons="false" pagesize="10" createrecords="false" model="AppointmentInteraction_Table" buttonposition="" mode="read"> <fields> <field id="Date__c" valuehalign="" type="" readonly="true" allowordering="true"/> <field id="Interaction_Purpose__c" valuehalign="" type="" readonly="true" allowordering="true"> <label>Appointment Purpose</label> </field
Can I use page include and a single skuid page multiple times with different params? For example, if I had a tab set and each tab included the same skuid page but passed different parameters.It seems to only work for the first load, subsequent loads fail.
So I’ve seen a couple ways to create new records. From what I can tell, there are essentially two types: with and without references set for the parent record through lookup or master-detail.Without references is the easiest in the sense that all that is needed is one model with the right settings on the model and page.1. Default Mode for components is Edit2. Save button has a redirect to /{{Id}}3. Loan Model data on page load in unchecked4. Create default row if Model has none is checkedWith references we requires the Id’s for the records that will be referenced. All the settings from above plus the following:5.a) The Id of the referenced records to be set as conditions when using step 4 from above or5.b) The id of the referenced records to be set using merge variables for default values on action Create New Row in Model.Am I missing anything?Also, why do the models need to be on the page in order to set the Id of referenced records?
Is there a way that we can tap into JQueryUI to add effects to the way Skuid components load in the UI? You see this sort of thing done nicely in apps like Twitter and Podio. Particularly relevant to popups and tabs, which can be nicely faded or eased in. Skuid does some of this already, e.g. when you expand a collapsed section. Would be nice to be able to control it more broadly.
Background: I have a pre-existing HCM managed package within Salesforce that I’d like to bolster with a Skuid wizard so that our HR onboarding process is as simple as possible and doesn’t require manual entry of data outside of the wizard. Data needs to be pulled from one data model (Recruitment) to another (Core HR), and broken out into different objects.Data Model: RecruitmentData Model: WorkerThe data mapping would need to work as follows:Candidate -> Worker (Name, basic demographic details – master record) -> Worker Address (child record) -> Worker Phone (child record(s)) -> Worker email (child record) Details from Job Requisition, Position; Manual Entry -> Work Assignment -> Position Allocation -> Compensation Candidate Work Experience
Hi, I am new to Javascript and while finding another article helpful, I need some assistance. I am adding an Inline snippet and I would like the “Available_to__c” and “Available_from__c” to be green and red if the “Available_to__c” date is passed TODAY.
I started building a mobile page for board members to vote on grants and noticed two components I have not seen before. What is the use case for using the wrapper and info text components in mobile? I searched help and the community, but couldn’t find any information on these components.
Hi - working on integrating Postcode Anywhere on a SKUID page.So I can get the postcode lookup working fine, and the javascript updates the address fields on my page, but when I save the page, the new values are not captured. It seems like SKUID only recognises the field values as having changed after I click into each input field.I guess it’s some kind of ‘onchange’ event or similar needed so that skuid recognises the field has been updated and saves the new value back to the model.Any ideas how I can make this happen?Thanks
i have created 5 skuid pages in salesforce using chrome browser.but i am unable to work these pages in Firefox browser.any body help please
I am using a popup to create a record. I have some conditional rendering turned on based on a picklist value. Everything is working well. When I save the record in the pop up I am using the action framework to save the model, query the models to update the lists without refreshing and close the pop up. Everything is working well except If I click on the popup again the data is still filled in with the information I had just saved. How do I get the popup to reset so it is clean and ready to be filled out again. It seems like I have seen this talked about somewhere and it was easy. I just can’t put my finger on it. Thank you in advance.
How can I override the “Create New > Contact” from the left hand tab bar built into SalesForce. I’ve created a new contact page using this tutorial http://help.skuidify.com/m/getting-started/l/102641But I can’t seem to override it. Anyone have an answer?
Managed Package tab overriding was not working sfLma__License__c: Object API name P00001_Licence_Tab :Skuidpagename <apex:page standardController=“sfLma__License__c” recordSetVar=“c” extensions=“skuid.Redirects” action=“/apex/skuid__UI?page=P00001_Licence_Tab&save_new=1&sfdc.override=1&tsid={!$CurrentPage.parameters.tsid}”/> In Buttons and link Pagename is not visible
I am facing one issue in Skuid conditional rendering and want to know if there is simple workaround for this in Skuid. When the component (e.g. field, tab) hides based on some defined render condition and if user has already entered the data in them before hiding…then what happens is data gets saved to SF record when the save button is clicked. Actually those hidden fields should be blank on the detail record when it is saved. Can you please let me know how I can accomplish this in Skuid? Do I need to customize the save button? Is there a point-and-click way? Thanks in advance!
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.