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 have created one apex class.I am validating some data there.After that I need to display some message to skuid ui page based on the code done in apex class.Is there any way with the hep of which I can display message from apex class to skuid UI.
When blocking the UI, is there a way to unblock the UI if a validation rule fires? I’m currently blocking the UI while a save is in progress and unblock once the save is complete but when a validation rule fires, the save never occurs so the UI remains blocked. I’d like to avoid using the timeout option because I don’t want the UI blocked for 6 seconds when the save only takes 3 and also don’t want the UI to unblock while the save is still being processed.
I have a wizard with 3 steps. Each step creates a new row in a different model. When the wizard opens, I’ve created a new row in Model1. I’d like to use some of those values for fields in Model2 (step2). The actions for the ‘Navigate’ button on Step 1: I save Model1, Create a new row on Model2 with a few of the values from Model1, and then navigate to step2. Any reason why this shouldn’t work? I click the ‘navigate’ button and nothing happens. Nothing. No console errors. Just nothing. Help?
Is there any way to rearrange these elements?
Hi All, When I using iframe in skuid page to include visualforce page, I got salesforce header and sidebar along with visualforce page? How can I remove header and side bar from it? the visualforce page came from managed package. Thanks Shaik
Quick question: I need to a pass a parameter to a Skuid page embedded in a Visualforce page. I can't find how to do this.
Has anyone integrated accusoft document viewer with skuid or another document management process?
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 want to save the link of the newly submitted task form to a sharepoint column. I thought this would work, but it is the link to the original nintex form that kicks everything off, not the most recent task form.
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.
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.