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 figured I’d ask this question before I spend a ton of time on trial and error. I want to use a UI only field to add the lengths of various models. It seems I would just do something like: {{$Model.MyModel1.data.length}}+{{$Model.MyModel2.data.length}+{{$Model.MyModel3.data.length} I remember trying something like this in the past and not having luck. Would this approach work in a UI only calc field or is there another way that I need to pursue this? Thanks
I have a many to many relationship between two objects with bridge object.A -> B <- CI’ve created a table, with object B as my source. I want to display the name from object A, and the attachment Id, from object C. However, for every Id in object C, I will get a new line item repeating the name in object A.The question is, I would like one line item for each name in object A, with a way either of expanding the line or hover-over, to show the associated Ids in object C. Does anyone know how to go about doing that?To help visualize…Currently the table is like…- ObjectA.Name1 | ObjectC.AttachmentId1- ObjectA.Name1 | ObjectC.AttachmentId2- ObjectA.Name1 | ObjectC.AttachmentId3- ObjectA.Name2 | ObjectC.AttachmentId1- ObjectA.Name2 | ObjectC.AttachmentId2- ObjectA.Name2 | ObjectC.AttachmentId3- ObjectA.Name3 | ObjectC.AttachmentId1- ObjectA.Name3 | ObjectC.AttachmentId2- ObjectA.Name3 | ObjectC.AttachmentId3I would like it to expand and collapse like
I’m building a chart based on an aggregate of a currency field, showing a total currency amount across some rows that have been grouped by type.Unfortunately, all the figures are wrong. They don’t add up with the currency amounts displayed for the rows in a table. It turns out that Salesforce has a “feature” that when you do an aggregate query on a currency field in a multicurrency org, the aggregated currency field is returned in the org’s default currency, instead of the user’s currency. https://developer.salesforce.com/forums/?id=906F00000008y4vIAAThere is a solution in the discussion above that involves querying the conversion rate yourself and applying it. I would do that if I was working in Apex, but can I do the same thing in a Skuid page? I suspect it would delay displaying the dashboard if I did it client-side. Would it be possible for you to do this conversion server-side and return an extra field in the aggregate model with the aggregated currency fields in the user’s curren
I just learned that Standard Controllers essentially create a class with one property for each field on the object, and that if you have many many fields you could experience slower loading times because of this, for standard Visualforce Pages at least. This raised a couple questions, 1) does this affect VF pages that redirect to a Skuid page? and, if so,2) would you recommend creating a custom controller to do overrides (and is that even possible) that only pull in necessary fields (id)?
Greetings,We’re having a small problem with a picklist when trying to attempt a Mass Update. There are four other picklists that the user can select from, and 3 of them work as desired. There is one however, that only shows “-- None–” when the user selects that particular picklist. When the user tries to inline edit a row, then the user can select items from that picklist.Thanks for any help.
I’m trying to do this with CSS, but there seems to be a element style that overrides whatever I try to do.
I started on a “quick and easy” project. I just want to put a google calendar embed in my skuid page but have the calendar display for the current logged in user. I can recreate the embed script exactly but the Iframe displays the salesforce header with an error message. I have tried 3 ways of recreating the embed and all recreate it exactly, but Salesforce will not allow it if it includes any merge variables. Anyone have any ideas on this?
I’m new to Skuid, and trying to figure out why this code is working fine as a mass action on a table, but shows arguments[0].list as undefined when used as an action on the Next Step button of a Wizard.The table with the mass action is the same table in the first step in the wizard. If the arguments aren’t getting passed properly to the Wizard, how can I make that happen?Here’s the code: var idsSelected = skuid.$.map(arguments[0].list.getSelectedItems(),function(item){ return item.row.Id; }); var ids=idsSelected.join(","); window.alert(ids);
I have three custom objects: Sale, Expense and Lead Source. Lead Source is a parent object on both Sale and Expense. I’ve created two Aggregate Models that work fine and show the following: Sales Per Lead Source (Aggregates Sales Model that Groups by Lead Source) Lead Source---------- —Gross Profit Cars.com -----------------$10,000 Autotrader.com---------$11,000 Expenses Per Lead Source (Aggregates Expense Model and Groups by Lead Source) Lead Source--------------Total Expenses Cars.com------------------$5,000 Autotrader.com----------$4,000 Is there a way to combine the results from the two models. In my case, I’m trying to calculate the Marketing Return on Investment for the company’s various lead sources. Formula is (Gross Profit - Expenses) / Expenses. Ideally, the table would like the following: Lead Source----------Total Sales-----------Total Expenses-----------Return on Investment Cars.com ----------------$10,000-------------------$5,000-------------------------100% Autotrader --
I’ve been working on developing a new Skuid Page for my users and today when I went to go back and continue working, I clicked on edit page and I get a white screen with Loading… I have waited 15 mins and the page does not load. I have tried restoring from past versions and still am presented with the loading page. I have devote a decent amount of time to this page and it would be very inconveient to start from scratch. Any way I can extract the XML and start fresh? Or tips on how to make the PageBuilder load this page? Other pages work just fine, it is just this one!
I am right on the cusp of rolling out our first Skuid page and keep hitting a wall when it comes to page assignments… I have pre-built everything in our Sandbox and it is all working but when I move to production the ‘Insufficient Privileges’ error comes up for non-skuid users where it did not in the Sandbox. Here’s what I have so far…please help! VF Page: I have created a VF page for the ‘view’ action for Account objects based on the skuid:page VF component tutorial. Working beautifully in the Sandbox. Security on the page has been updated to include the profile of my two test users. Code: <apex:page standardController="Account" extensions="skuid.Redirects" showHeader="true" sidebar="false" readonly="true" docType="html-5.0" action="{!IF(canUseSkuid,'',redirect)}" title="{!Account.Name}"> <skuid:page objectType="Account" actionType="View" /> </apex:page> Page Assignments: One org wide page assignment to assign standard pages for the Account view Two user specific pa
Hello, I am completely new to Skuid and am enjoying myself so far, but need a little bit of help. I have a table of expense item records and want to allow the user to do the following: - select a number of rows and click ‘create new invoice’ button - complete a pop up to create a new client invoice record - update all of the selected expense items records (in the table) with the ID of the newly created client invoice record (in SF this is a lookup relationship) I have managed to get the first two items working, but am struggling to see how to update the selected rows with the newly created record. Any help greatly appreciated. Ben.
I have a Model which has child relationships and I am displaying those values in a template field in a table.On page load everything gets displayed fine. Then I can open a popup to edit some fields (not on the child relations).On the After close actions I query all the models again but then the the child relation template fields don’t have anything in there anymore.
I can’t seem to add a border to only the top of a sub-navigation. And, I can’t seem to remove a 1px border from the bottom of sub-navigation items.
We have been using “Remember User’s last tab” from the beginning of our implementation. Over the last little while I have heard a couple people complain that Skuid is no longer remembering their selected tab or subtab. I tried it out today and I am getting the same behavior. I clicked on my tabs and they are still checked to remember. But when I load a new client/account it defaults to the first tab. I don’t know exactly when this stopped working but it has been for a few months at least. Any ideas?
HiI need to change the icon for a row-action once the user clicks on row/row action icon in table.I am trying through a row action snippet, not knowing how to get it done.I gave the icon “fa-square-o”.Every time the user selects a row, change icon to “ fa-check-square-o” and if other row is selected change icon back on to “fa-square-o” Below is my snippet I tried:var params = arguments[0], $ = skuid.$;//console.log(‘FROM the row action for SELECTION - params are BELOW’);//console.log(params);var model = params.model;var item = params.item; //console.log(‘item ==========’); console.log(item);var list = item.list; //console.log(‘item list =====’); console.log(list); /**** REMOVE the hightlight for rest of rows; WHILE removing highlight for row already selected , CLEAR the TEMP model and * in the END after hightlighting current row , push the selected row into MODEL * ****************************************/ $.each(list.renderedItems, function() {
I’m trying to calculate age based on today minus date of birth in a UI only field but I’m not having luck getting the correct result I do get a result, but it is huge. I have tried assuming graduations of days, hours, minutes, and even seconds, but the number is still way too large. Anyone have ideas of how I would formulate this in UI only?
Im looking to use skuid to reskin my salesforce account pages to include order invoices from our website ecommerce system, and am curious to know if using the integrations with rest API if I can pull that kind of Data from Magento?
I’ve created a filtered Campaign model to work around a bug involving multi picklist fields. The resolution of this issue has the details of my setup.https://community.skuid.com/t/how-do-i-filter-a-reference-field-using-a-multi-select-p…The page creates an Opportunity, and when I attempt to save it I get an error stating that the CampaignTypes field on the Opportunity model does not exist.
in my model i have a field like expected_start_date__c. this date should be future date. how to write snippet code for this validation. Thanks in advance
i have written some field level validations in my snippet code, when i click on save button without entering any data, it displaying the error at a time time only for one field. After filling that field it showing next field error message. But i need all fields error messages at a time when i click on save button. can any one help me out from this issue. Thanks in advance.can any give quick reply
Is there a way to save just the selected row from a row action?I have a situation where a user is entering values in a table that is in edit mode, and as they go down the list, they may encounter a situation where they need to save just one row in the table, without saving the whole model, because we want to refresh the model to show new child records, and save that row, but can’t save the whole model due to required fields not being filled out.
I have a template field in a table that displays 3 fields with some HTML. Can I limit the maximum number of characters displayed ?
I am trying out Skuid for Salesforce and creating a proof-of-concept demo for my bosses. I am trying to query records related to another record via a condition and am running into issues. My current structure is: Rfq - (child) Parameters - (child) RFQ/Quote Materials I am wanting to return the RFQ/Quote Materials records in a “drawer” under the Parameter record. There can be N:Parameter Records for every 1 RFQ. And, N:RFQ/Quote Materials records for every 1: Parameter Records. This is my condition under my RFQ/Quote Materials record: When I view the RFQ/Quote Materials record under the associate Parameter I do not get the correct associated record: The “Related Parameter” record should not be Silo to Use Bins. It should be Use Bins to JBC. What am I missing? I have had great success using this type of condition logic on other records. I simply cannot get this one to work correctly.
I have added a Chart to a Skuid page. One of the field displayed in the chart is a currency field. We are a Multi Currency org, I have noticed that the currency field in the chart is being shown as default currency but without convention.Does anyone know what I should do to resolve this? I would like to the currency to be converted or shown in its original value. Thanks
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.