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
We have made numerous custom objects for Calendar items. We do not use Salesforce events. Any ideas for how to export or sync these calendars to google?
On Date fields when just the month and day are entered “6/5” I want the date picker to automatically default to the current year and date entered. Currently what happens is it defaults to the current day because that is the day the date the picker is on. I assumed this could only be achieved with javascript so I repurposed a script I found on here with a few tweaks. However, I am not getting the desired results. My assumption was that limiting the year and using the go to current would only let 2015 save and the day that I actually typed in. Sadly, that is not the case. Any help would be greatly appreciated. (function(skuid){ var $ = skuid.$; // Global datepicker settings override for this page $.datepicker.setDefaults({ changeMonth: true, gotoCurrent: true, changeYear: false, }); })(skuid);<br>
Can’t seem to provide users the ability to view Knowledge Articles. It looks like I have to use a subquery to get articles to show up in the page. This works fine for internal users. However, when I log into the same page as a customer, I get this error: When I remove the filter, the page works fine as a customer, but no knowledge base articles show up. Any ideas?
I previously had a use case with a junction object, where our end users also had to create records in the lookup object before creating the junction object record. After some time, I’ve realized we need to improve the UI for this process. Here’s the previous thread: https://community.skuid.com/t/dont-render-a-record-if-its-referenced-in-a-junction-obj…What I would love to do is the following:Table A = lookup object, which looks up to the AccountTable B = junction object, looks up to the Opportunity and Table AHave user create record in Table A table (only two fields to be filled out)Row action on Table A that creates a record on Table B - I can currently do this already (once the record on Table B exists, the row action won’t render for that Table A record - i.e. no duplicates)Row action (or some other way) on Table A that queries any records on Table B that looks up to the Table A record, and deletes that Table B record (this is the tricky part)To give an example of how this would wor
Is it possible to include Salesforce s-controls on Skuid pages? See attached. I have a page that includes s-controls that I would like to convert to Skuid. The s-controls are located in the top of the page in the Service Flow Wizards section. I would like to keep that there and then display the rest of the page data possible in a tab set. Has anyone done anything like this?
Hi Skuid warriors, I am building with the mobile composer. On one panel, I am attempting to use a Title or Template component merging a value from a model that I also display on that same panel within a Deck. But I want the merge field to be outside of a deck so that it does not repeat. This is my syntax:Title {{{$Model.ModelName.conditions.0.value}}}The desired outcome is to merge in the value set for the first condition in that model. It works flawlessly as long as I have that title / template within a deck. But as I said, I don’t want it to repeat for each row, which is what happens if that method is used. Is there a different syntax I need to use to get this value to show when the component is placed on the panel by itself (without deck)?Thank you in advance, Robin
If the person name does not exist in record lookup of name field of a new record. I use a popup to create the new name field. How can I populate the newly created name in the underling new record.? See videohttps://docs.google.com/file/d/0B409lhd9sYDcc3o2OUl3Ymx4dTA/edit?pli=1
I have a table whose model is an aggregate, it loads all the data up to the limit but load more doesn’t load anything more.I have this issue since 3 month.Now our product is ready for live but client needs this bug solution before go live.I am tired now.Can anyone tell me from skuid team when this bug will resolve?How much time it takes?Is there any work ground? Please provide me your suggestion or answer as soon as possible.
User can split volumes across delivery months. Need to ensure that volume splits sum up to total volume e.g. 1333 + 1333 + 1334 = 4000 Don’t want server side validation rule(s). Ideally, can write client side JavaScript to perform validation whenever user clicks Save. Please advise if this is possible and any guidance is appreciated. Thanks, Irvin.
I have several active validation rules on the opportunity object. When using a SKUID wizard, the validation rules accurately prevent me from saving without entering the necessary info, but SKUID is not giving the user any feedback. The SF validation rule error messages are not appearing. I would like them to appear at the top of the screen like standard SF. Thoughts?
We have a number of fields set to conditionally render on a ‘Create’ page. On each of them, we have set the rendering condition parameter ‘If hidden, Model field changes should be…’ to ‘Cancelled’ (not ‘Retain in Model’). When we eventually save (we move through a series of screens using a [next] button) until the final page where we present a [SAVE] button ), both fields that were conditionally rendered with mutually exclusive conditions now contain data. Example. Background - Field Employee Name is conditionally rendered when Hire Type field = Existing Employee. Field First name (and other fields) are conditionally rendered when Hire Type field = New Hire. Both fields’ rendering condition parameter ‘If hidden, Model field changes should be…’ are set to ‘Cancelled’ (not ‘Retain in Model’). User Action - The User first selects Hire Type = Existing Employee. The employee name field is displayed. The User selects an employee name (this is a look-up field). Before proceeding to
I need to have a custom CSS class attached to rows, based on the content of the row. For example, most rows might have a class “Normal” but a few rows might need the class “Important” based on a field on that row.To make this even a bit harder, this happens in a drawer - which means the table doesn’t render until the drawer is expanded.I attempted to do this from a custom field renderer, which I would take the element of the field, and locate the parent “TR” element so I can assign the class there. However, at the time of field rendering the element is not attached to the table, so I’m unable to traverse to the parent.What would work is if there is an event I can attach to that would signal either when a row is fully attached to the DOM, or provide the row DOM element, or even signal me when the entire table is attached to the DOM (and I could then pass over the model, locate the elements for each row and locate the parent TR element to adjust the CSS class).Any thoughts on how I mig
I am wanting to add a conditional filter on a table where it searches a TEXTAREA field for a specific word - this is on the case object. It works on the subject field as this is “string field” but dosn’t seem to work on the TEXTAREA field.Is this right, any workarounds?RegardsChris
I am trying to create quote from quote related list in the Opportunity detail skuid page using inline create option. Quote is created without quoteline items.(Opportunity has product). 2) CreatePDF and EmailtoQuote functioanlity how to replicate in Skuid page?
Beyond defining labels as a resource on a page, is there a way to trigger labels that are needed to be loaded by Skuid? For example, some “global always load a defined set of labels” approach akin to the JS & CSS static resource concept? Here’s the use case - We’ve built a framework that sits on top of skuid and our runtime requires the use of localizable strings (e.g. messages - we have lots of these). Since our runtime is included on all of our skuid pages (we have over 100 and counting), as I understand it, the only way to ensure that the label is made available on the skuid page itself would be to define the label on each page. In our case, that would mean repeating the same label definition on each and every one of our skuid pages. If there was a way to have a global “include” concept, this would allow our runtime labels to be included everywhere and then only page specific labels would need to be included in the builder on the specific page. Possible solutions assuming so
Found an issue when column freeze is enabled the multi-select checkboxes do not work. You get a bit of a flash but the box will no check or uncheck. This only happens if column freeze is enabled (1 or more) and your scrolled in a away that content is behind the frozen columns. If you scroll back over so that no content is behind the frozen frames the checkboxes work. For now I just disabled column freezing but still allow scrolling horizontally which works well.
We did our sandbox refresh and facing following error on the skuid app.An error occurred while attempting to load the “skuidcore” Component Pack. There may be an issue with the name or location of your Component Pack manifest files. Error: Please check Skuid Settings to ensure that this Component Pack has been correctly requested.
New Skuid user here! When users attach a file with chatter on a normal salesforce record, it automatically gets added to the attachments related list on that record. On the Skuid detail page I just created that doesn’t seem to be the case. I am struggling to get chatter files to show up in the attachments table I created, or even in a separate table I was testing out just for chatter files. Thanks!
I’m getting over my head with the Java snippet stuff and field renderers but feel like this might be doable based on comments, but I’m not getting it and want to ensure I’m not wasting my time.I have Master Detail relationship and want to create a new detail record using mobile. The Master object (Questions) are questions and picklist values with acceptable responses (i.e. Yes, No). On the detail object (Answers) all of the response fields are text. I want the response field to be a picklist from the acceptable answers in the Master object. So:Master Question 1 - “Are you tall?” - Acceptable answers “Yes/No”Detail Response 1 - (Field is text) I want display options for mobile user to be “Yes/No”.I could live with having to hardcode the acceptable responses vs reading them from Master (better).
I’m getting the following error when trying to import pages -Maximum view state size limit (135KB) exceeded. Actual view state size for this page was 214.719KB I need to perform a mass update on a bunch of my skuid pages, so I exported, quick find and replace on the CSV and then tried to re-import, when I got the above error.
Hi, I have a page where you can select a list of services requested by our customers and compose an email with the data of the services to request price to our Suppliers.Right now the email opens and the to: field is empty.What I want to do is:When the user clicks on the mass action “request price” open a popup asking for an account and then send the email to that account (to the order contact of that account but I have that covered).So, What can be best approach to do that? how can I do to show a list / select of accounts to select only one?
As title, thanks for advice
I’ve been working with creating dynamic models and components. The tutorial does a good job of showing how it’s done, but the process is repetitive and tedious for creating very little compared to the typical way creating a page.Can you create utilities for converting models and components into the JS code? It would be very very useful.
In order to migrate page data between Salesforce orgs, we exported the data on object skuid__Page__c to a csv file, and import it to the target org.During first upsert, it finished without error, but “null” prepended to skuid__UniqueId__c.2nd time upsert, it will throw error below and upsert failed:2015-04-10 15:38:21,248 ERROR [Upsert_skuid__Page__c] client.PartnerClient processResult (PartnerClient.java:432) - Errors were found on item1 2015-04-10 15:38:21,248 ERROR [Upsert_skuid__Page__c] client.PartnerClient processResult (PartnerClient.java:434) - Error code is:DUPLICATE_VALUE<br>2015-04-10 15:38:21,248 ERROR [Upsert_skuid__Page__c] client.PartnerClient processResult (PartnerClient.java:435) - Error message:duplicate value found: unknown duplicates value on record with id: a3pZ00000001PHW Could you please help?
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.