Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
When working with the date picker in the Lightning Design theme, you can still use the right and left arrows to move from one month to the next, but the circle around the date doesn’t move. So, you can see when you arrowed over 30 days and the calendar goes to the next month, but you can’t see what day you’re on.We on the latest Skuid install and have updated out of date themes.
Hi all, I have a peculiar problem that I have found … I have a model for account that queries on page load, but doesn’t find any data. This account model is showing on a page in a table with a 'Read with Inline Editing" mode, but has a render condition on it to only show if the account model has data rows. If I use a button to create a new row in the model, the table appears, but the first row that is created is in a read-only format, then the second one is editable, as in the screen shot below. Any ideas? Thanks in advance!
I am trying to make a pop up to add a row to a table asking the user to choose a product and add a Quantity then click a row action button to add the choice to the table below the popup.When I go to the main page, I click a Global action button that launches a popup.That popup has a search component that feeds a table.Once the user has chosen a product it shows on the table, The user enters the quantity and on the first click of the “Add to Project” button a blank row is created even though a product and Quantity are in the system. On the second click the correct Product and Quantity are added as a second line on the table below the pop up. What is causing the first blank row to be created? My actions are below. Thanks!
I’m trying to raise an event from a Skuid page hosted in Visual Force to a Lightning Component that’s hosted in the Skuid page in a iFrame, like so: !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20180829-111823-jep9nn-Edit_Page CareOnlineAccountQBOTab SeanClone_inline.jpg “Image: https://d2r1vs3d9006ap.cloudfront.net/s3\_images/1748942/RackMultipart20180829-111823-jep9nn-Edit\_Page\_\_CareOnlineAccountQBOTab\_\_SeanClone\_inline.jpg?1535581732”) But no matter what I seem to try the LC doesn’t seem to be hearing the event. I tried a point & click publish with scope set to include LC’s on the Tab’s Actions but no dice. I also tried using a snippet but same results. I know there are several configurations where this will work such as Skuid pages hosted in LC’s, but what about the other way around? Thanks
I’m trying to achieve the following result but having a hard time. Currently, I have the following models: Opportunity Model, Project Model, Project Deliverable Model and Opportunity Project Deliverable Model. When I create an Opportunity and add a project from the Project Model. I want all the Project Deliverable based on the project from the Project Deliverable Model to be added to the Opportunity Project Deliverable Model. All the models are Salesforce Object. My question is it possible to automatically add all the rows from one model to another. I tried using action trigger and create new row(s). But When I do that, I'm able to add only one row. Any suggestion will be helpful.
I have a table based on aggregate model. I want to see a popup with all records that match the “sourced from”. As an example I want to see the 6 records with the picklist value “FSBO”. In the pop I have a page include. What would I pass in the query string?
I have an aggregate mode with conditions but second condition is ignored. The second condition “Person__r.Membership_Year_Confirmed__c” is ignored.
I would like to display all scheduled events on a calendar but only let users interact with “active” events. Once the event has reached its capacity, users no longer have access to it, but they should still be able to see the item on the calendar.
I have updated to the latest Skuid version in my sandbox and my pages that are rather large but opened find in version 9 and 10 now get a heap size error with version 11. I know to quickly fix heap size errors I can reduce the number of records being pulled into the models but that isn’t working. Is this a known issue? Or some change in Millau for large pages?
We’ve just upgraded to v11 from v8 and now our Chatter widgets are showing a full Salesforce page with the error “Page Social does not exist”.As it’s a full SF page, it’s breaking our layout until we remove the widget.After reading other related posts here, I’ve tried removing the widget, saving, and add it again, but not luck - I get the same error.What do I need to do to get the Chatter widget working again?Thanks.
The export table data button is not working on Firefox or Google Chrome browsers, but works fine in IE. When the button is clicked, nothing happens.
The below In-Line snippet works in Skuid version 9 but not in version 10 or 11. This is a “set focus” snippet that we use when using a scanner so the user doesn’t have to manually put the cursor in the field. Does anyone know how to fix this? var field = arguments[0];$ = skuid.$; var delay = ( function() { var timer = 0; return function(callback, ms) { clearTimeout (timer); timer = setTimeout(callback, ms); };})(); delay(function(){ $('.nx-field > input').first().focus(); $('.nx-field > input').first().select();}, 100 );
Is it possible to create global hotkeys via javascript? Right now the hot keys are only on a few components, which is fine, but they have to be visible to work. It doesn’t seem I can make a global hotkey that leverages the action framework, but can I make a hotkey in javascript? The API documentation doesn’t really provide me a lot of information: https://docs.skuid.com/v11.2.8/en/skuid/api/skuid_hotkeys.html
For a module what will be the Max # of records Limit, we can extract? If we extract more records it that will impact the performance of the page?
There are three pages I built. 1. Contract Assessment Data Entry Page. 2. Contract Assessment Detail Page. This page is where the user can add more things like, tasks, notes, etc. 3. Contract Assessment Portal Page. I’ve been able to connect 1 & 3 because they both share the same models and fields. But I can’t get 1 to save and then redirect so that the same information shown in 2 but with additional information. Is this a visualforce page issue? Every model has interconnecting IDs. This is also an exact duplicate of different pages with the same concept.
In my Calendar component, the Event On-Click Behavior is set to Run Snippet Then Show Custom Popup. The snippet does several things, one of which is to “lock” the selected record so that no other user can process the same one. The custom Popup has, essentially, two Page Titles for the “is locked” and “not locked” scenarios. Rendering rules are looking for the “locked by” value in the selected calendar record. The problem is that the Rendering Rules apparently process before the snippet completes, although field values displayed in the Page Title do reflect the completion of the snippet. As I read an earlier discussion (https://community.skuid.com/t/calendar-popup-showing-before-deferred-promise-resolved?top…), this behavior should have changed way back in Superbank patch 5.Is there something I might be missing in this implementation?[Some notes on the use case: This will be run in a public-facing Site, so it is always the same run-time User. Each use will login with a “Member Id,” wh
How to skuid-pull a specific page? According to the CLI documentation: Data management: --dir: (string) The input/output directory where files are retrieved and stored to ordeployed from.Abbreviated form: -d --module: (string) Skuid on Salesforce only. One or more Skuid page modules, separated by commas, to deploy or retrieve.Abbreviated form: -m --page: (string) Skuid on Salesforce only. One or more Skuid pages, listed by page name and separated by commas, to retrieve to the local file system.Abbreviated form: -n Could you provide an example command to pull a specific page? I tried --module Download --page Download-TestContact This works: TestContact is the only page in this module. –module Download
We have a picklist option that contains an ampersand. Like this “Cheese & Crackers”. On my skuid pages it’s appearing like this “Cheese & Crackers”. I haven’t tried it in a field component but it definitely happens in the table component. We are running Skuid 11.1.13.
hey all another noob question.I am creating a new row from a table via global actions1. show message and block UI2. Create new Row(s)3. Update Closedate 4. Unblock the UI everything works find as long as I choose a drop down value for the date, but my business case is to set the date for 30 days from today. When I choose next month it gives me the first of the month, When I choose next N days and set n to 30 I get tomorrow.Is there a way to choose exactly 30 days out? I tried looking around the forum and read about setting a condition on the model but I could not get the condition to show up in the new row.
I’m created an activities page that is meant to work in the nav pane for console view. Instead of having a standard table, I’m creating a template field that is formatted with the necessary fields from my task list. The problem/question I’m facing is if anybody has a way to be able to search and/or filter multiple rows of date presented in templates. For instance, in this screenshot, I’m presented all Tasks that have a due date of today. I have UI-only check boxes for other scenarios that will hide/show all those respective tasks. What I’m looking to do is a few things - for Tasks due today, I want to be able to filter/sort by Reminder Time, or search by an Account (or other field). Has anybody figured/done this? Preferably, without any custom coding? I’d then recreate for each table/model to give the end user the ability to sort their day. Thanks!
Anyone know if it’s possible to limit a textarea to only vertical scrolling, or otherwise containing it (much like this - https://jqueryui.com/resizable/#constrain-area)?I have some large text fields that often need truncating or resizing, but right now if I set the rows (so I can resize manually) I can resize the textarea way too far.
I set the Division’s Unique ID to “spouseInfo” and added inline css below but it’s not working. .spouseInfo .nx-basicfieldeditor-item-label { width: 20%; !important; }
Does this mean that we’ll able to use Lightning components within a Skuid page? https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/lightning_out.htm
I have a page which is viewable on a site. When the page loads I write 3 fields of data to a UI-Only fields. On the public facing site how do I get the fields to show? On the public facing https://dorothy.secure.force.com/Profit/?id=a1hf1000000S6BW you will see the 2 fields do not show. Here are 2 of the merge fields which are not showing but do show when I am signed on to salesforce. I have the following setting for thesite object
Text box won’t grow to accommodate longer text. Tried adding responsive grid around field editor (green background) but it still won’t grow.The fields work fine in other themes…
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.