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
Hi,I have a product in other currency than the Default:STD 5,755,723,707.74 (EUR 237,331.07) If in Salesforce I change the currency to USD (for example)USD 5,755,723,707.74 (EUR 4,649,605,748.26)The Price quantity remains unchanged (as expected) and the Conversion to euros changed (as expected)In my skuid page is not working as expected:STD 5,755,723,707.74 (EUR 237,331.07)If I change the currency to USD:USD 293,790.95 (EUR 237,331.07)Skuid is respecting the converted price not the real one!!!
Does skuid work with public caledars and resource calendars? If so how are events distinguished. Right now we have a Skuid calendar that just brings in all events and we are having users share their calendars with roles or subordinates or specific users if they want the to be able to edit their events. For instance, the medical department, who schedules all the doctor appointments, needs to be able to edit each other’s calendar events. I am just double checking to see if this is the best way to use events on the calendar or if it would have been smarter to use Public and Resource calendars.I think I am fine because it is working well. Just wanted to check my method.
I have a Salesforce app called Picture Uploader with a custom button that works just fine in the native Salesforce UI. I can’t seem to get working in Skuid. The custom button is on the Contact object with the following OnClick JavaScript:var untreatedUrl = “{!URLFOR($SControl.btydev__Picture_Upload_Processor, Contact.Id)}”;var retUrl = untreatedUrl.replace(///g, ‘%2F’);var retUrl = retUrl.replace(/?/g, ‘%3F’);var retUrl = retUrl.replace(/&/g, ‘%26’);var fullUrl = “/p/attach/NoteAttach?pid={!Contact.Id}&retURL=” + retUrl;//alert (fullUrl);parent.window.location.href=“/p/attach/NoteAttach?pid={!Contact.Id}&retURL=” + retUrl + ‘%26autoMapValues=1’;What I’ve done that isn’t working:I’ve created an inline snippet with the above code. I’ve created a custom “run skuid snippet” button that points to the snippet. I think the part that is not working are the Skuid-specific javascript references that should come first in the snippet before the snippet. I welcome your tips.Thanks!Kri
Hey all (happy thanksgiving to my American friends), I am having a strange issue when I change record type on a page. The field editor is tied to the Task Object. I have included the RecordTypeId field so I have an editable field on the page. However when I change the record type by editing it inline on the view page, the Status and Priority fields are wiped clean. These are fields that are accessible in both record types and the picklist values aren’t restricted by record type so baffled as to why a record type change would clear them.
I’m trying to create a model for one of my custom object’s history. When I go to create a model I can find the history object of all the standard objects and even the __History objects for Skuid’s objects but my custom object’s (PO_Item__c) history object is not coming up (expected: PO_Item__History).I have verified that this object exists in the developer console and there are even records in it, but I just can’t get it to appear in the model SObject picklist.Any ideas?
Hello again!If you have a page with an action that launches a popup which contains a page include, is it possible to have a save button in the page include that refreshes models from the page which launched it?
I have several Field Editor sections that are currently stacked in a vertical column. I’d like to put them side by side, but can’t seem to get them into the same template or panel set. Is it possible to arrange Field Editors side by side?
Morning Folks!I’m using a row action on a table to create a new row whilst populating its fields with data from the original row. This is working fine except for using a formula field on the original row to populate a field on the new row.I’ve tried re-querying the model before updating but that hasn’t fixed it - the field comes up blank.Any ideas?Cheers!Louis
Hey guys, I am a very new Skuid user so apologies in advance for what I expect are a string of newbie questions. I am stoked to be working with this framework though as it’s pretty awesome!One of my first tasks is building a new task view page, and I am finding that I can’t find all the fields I would see even on a normal task page. For example, the “Phone” field one typically finds on the task layout is nowhere to be found. I would expect it to be accessed via the WhoID but no luck there. Appreciate any help! Thanks.
I’m trying to display an element from an app (matchmyemail) by using a template/iframe. It works when I use the url I got by inspecting the element and keep the specific record ID as is. I can’t seem to get it to work though whenever I try to replace the ID with any merge syntax Here’s the error message I get in the editor page with all the attempts I’ve made so far: “Visualforce Error Id value is not valid for the Contact standard controller” Here’s the syntax I’ve last tried: https://mme.eu3.visual.force.com/apex/EmailMessagesContact?id={{{id}}}"; width="100%" height="500"> Any help would be appreciated.
The new conditional rendering features added to the Dreamforce release are killer, thank you! Came across an issue related to the proper evaluation of a conditional rendering property marked to number of rows in model. In appears that the evaluation is using === / !== and unfortunately the data types are different (data.length is numeric while the value from the xml is string). This results in incorrect evaluation. Steps to reproduce: Create a new detail page for Account Remove everything except page title Add 3 templates First template with text “Show if RowCount == 1” set to conditionally render when # of rows in Account equals 1 Second template with text “Show if RowCount != 1” set to conditionally render when # of rows in Account does not equal 1 Third template with text “{{$Model.Account.data.length}}” Preview the page picking an account when prompted Actual Result Template #2 appears Expected Result Template #1 appears Repro Page <skuidpage unsavedchangeswarning="yes" showsi
I want to create a page that shows users all of the ideas submitted for a specific Idea Theme. The only thing I’m struggling with is how to give users a way to “upvote” or “downvote” an idea in the table using a row action. Essentially, the action would be creating a new “Vote” record, associated with the Idea row from where the action was clicked, with some predefined values (type=Up, createdby= User ID of Running User.) Here is the API documentation: http://www.salesforce.com/developer/docs/api/Content/sforce_api_objects_vote.htmHow can I do this?
I have created my Skuid detail page for opportunities and I am needing to include a third party app called Cirrus Files. It comes as a visualforce page but for the life of me I cannot figure out how to include it on the skuid detail page. I have pasted the visualforce page info for the app below. Any help would be much appreciated! <apex:page standardController="Opportunity" tabStyle="Opportunity" cache="false"> <c:GDrive recordType="Opportunity" recordId="{!opportunity.Id}"/> </apex:page>
I’m building a Entitlement details page and would like to show the status icon field from the default salesforce page. Only the text status field is available from the fields in the entitlement model. I did find the Skuid tutorial explaining Custom Field renderers however this guide covers how to use render snippet in a table cell. I’m trying to apply this to a Pannel set. What would the java code look like in this example? Is there any other guides that go into more detail on how to accomplish this?The status picklist is:Active = green checkInactive = White checkExpired = Red check
So I have a whole bunch of snippets out there, and I’ve been thinking about consolidating some of them into library methods that are contained in a static resource. Firstly are there any performance implications by including snippets in a resource? What are the best practices for doing this? Also I got the static resource working with register snippet, and I can get the snippet with getSnippet. I understand that I can call it with something like: var i = skuid.snippet.getSnippet('getCorrectURLIfPortal');<br>i.apply(); but how can I set the arguments for the snippet? Do I pass them into the apply function?
Is there a way to close all drawers? It’d be nice to have drawers close when another is opened.
I have a record which contains a checkbox. When aggregating the object type I would like to count the number of times that box appears checked. I tried using a SUM and a COUNT and it appears the checkbox field is not supported in those capacities in SKUID. As a work around I decided to create a Formula Field (Number) that would be either 0 or 1 depending on if the value of the box was checked. Unfortunately it appears that SKUID aggregates do not support formulas. Aside from using APEX or field updates to populate a Number field is there a better way that I am not identifying to count fields which are checked in Aggregates?
Is there a priority order when referencing in CSS?Here is my dilema: I want the table formatted every other row with different colors (even/odd)…table.nx-skootable-data tbody tr:nth-child(odd) td { background-color: #FFFFF2;}table.nx-skootable-data tbody tr:nth-child(even) td { background-color: #FFFFFF;}I want the row to highlight a third color when the user hovers over the row…table.nx-skootable-data tbody tr:nth-child(even):hover td,table.nx-skootable-data tbody tr:nth-child(odd):hover td { background-color: lightsteelblue;Finally, I want the table to have a 4th color when the row’s drawer is opened…table.nx-skootable-data tbody tr.nx-item-has-drawer td { background-color: black; color:white; font-weight: bold;}(BTW, any help in making the above CSS more efficient is most welcome!)My confusion is over the order in which these options prioritize. I want the “has-drawer” reference to take top priority, but it seems like the “hover” reference has it. If a drawer is
Is there syntax for referencing rows of a table that DO NOT have a drawer open? In other words, I’d like to gray-out all rows in which a drawer is not current open.
Hi, I have a page to list all the products of a country (with a query param in the url: ‘countryid’).Each product has a supplier.The supplier doesn’t have any relation with the country.I’m trying to do a filter in the table component with all the products to filter by supplier.The problem is If I set the filter based in the model data in the select box shows one file per product :🙂- Use the Param countryid in the subquery to load the model
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.