Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
As per skuid doc we can publish custom skuid event like:var config = { doSomething: true<br>};<br>var eventDetails = {<br> direction: 'vertical'<br>};&nbsp;<br>skuid.events.publish('acme.page.resize',[config,eventDetails]); What would be the passed for config and event details if we publish event from model save action as default? Is there a way to publish event from model save action with custom config and/or eventDetails? We are on Millau 11.0.3.Thank you.-Gyan
I have wrote the following code in an inline java snippet to refresh another sub tab, while this page is loading in another tab sforce.console.getSubtabIds( null, function(result){ if(result.success){ for(i=0; i<result.ids.length; i++){ var tabId = result.ids[i]; sforce.console.getPageInfo(result.ids[i], function(result){ if((JSON.parse(result.pageInfo).objectId).startsWith("003")){ //sforce.console.refreshSubtabById(***id***:String, active:Boolean, (optional)callback:Function, (optional)fullRefresh:Boolean) sforce.console.refreshSubtabById(tabId, false, function(result){ console.log('Contact Tab refresh-->', result); }, false); } }); } } }); Code is executing perfectly fine and in the console.log statement it is returning false. While reading regarding the method refreshSubtabById(), understood that this method won’t work on external pages and Visualforce page (https://developer.salesforce.com/docs/atlas.en-us.api_console.meta/api_console/sforce_api_console_re…). Does any one h
The OOTB Calendar Component isn’t really optimized for mobile so I was wondering if anyone has done some custom work to make the UI more manageable and efficient. An iPhone-esque design for a mobile calendar would be ideal. It would be great to select the date and see the events that make up the date vs. a chunk of real estate for each date.
This may be the same issue as this other post.Is this also fixed in skuid 10?
I’d like to be able to enter some text (either in a read-only field to just the text itself) into a custom component’s properties.Something like this:{ id: “signee”, type: “text”, label: “Signee”, disabled: true, //User should not be able to edit value: signee // Need to enter the value from a variable}Is there a supported way to enter a value dynamically based on other information within the component’s builder-side definition?
I’m trying to speed up loading of a calendar component. Just noticed this option “Valid Date Range”, which looks like you can tie it to a single model in your page and establish Start and End Dates for the calendar through that single model.I can’t find any documentation on this feature however, so just wanted to get some clarification on whether I’m interpreting this correclty.Also, I tried using an UI-Only model with 2 date format fields for start and end date, but it wouldn’t allow me to tie the Valid Date Range back to these UI-only fields.
Hey All, I am trying to diagnose a slow page load but can’t seem to find the issue. The page is an account detail with quite a few tabs and about 15 models. The page was taking about 9 seconds to load (very slow if you need to reference different accounts quickly) and I was able to bring it down to about 4.5 seconds by deferring most of the models to load data only when their respective tabs are viewed. Now when I am looking at the Execution timeline in the dev console it seems that there is a few large chunks of Apex_Code executing time (~1 second for some) that is causing the slow page load. The execution log for the Apex chunks just show the method /apex/skuid__include Event: ENTERING_MANAGED_PKG. Ideally, I would like to figure out what is causing these so I can get page load down to 1-2 seconds. If anyone has any ideas about what is causing this and how to remedy it (or how to dig deeper to find the cause) I would be very appreciative! Thanks, Michael
I have a table and I want a row action that pulls up a page include. The page include id should be the row id. What is the query string? I know these are wrong:id={{Param.Row.id}}id={{Row.id}}What is the correct string?THANKS!
blank screen when logging in with SAML. I have followed the documentation at read:https://docs.skuid.com/latest/en/skuid/single-sign-on/saml-example-idp-okta.html and when I click on Sign In with SAML I get a blank screen. The Log in with SAML is redirecting to https://.skuidsite.com/auth/saml/sp/dc7d7ded-8461-4027-b065-1f1fa55b2dc7/login. When I check the Okta logs for that application, it is not attempting a connection.
This was asked here about a year ago but there was no resolution.We have pages that will use an external data source in our managed package. Is there anyway to create a “default” data source for these pages? I understand not wanted to share Consumer secret and key and that customer will have to do some setup to actually connect, but the pages all error in our packaging org since the data source doesn’t exist yet.
Edit- I mean working with B2 in Skuid, not in general.Working on adding non-salesforce file (jpg) storage for our student photos. Has anyone used Backblaze B2 Could storage service? It’s similar to Amazon S3 storage.
Creating a row before the popup instead of after changes the behavior of a field editor in the popup.I am using a global action on a table to create a new row in a popup. The method shown in the skuid tutorial has a Create Row action followed by Show Popup. In the popup, a field editor displays the fields needed for a new row.If the user cancels changes to the new row (before saving anything), the field editor goes blank. This is expected. But in my use case I want to create a new row programatically without having the user close the popup and start over. (There are multiple long-text fields where edit-save-edit-cancel-edit-save is typical behavior.) This is not working.To debug, I added a New Row button (in a Page Title) to run the Create Row action. A new row is created (and can be seen in the underlying table), but it does not appear in the field editor.However, if I change the original action sequence to Show Popup, then Create Row, the new row is displayed in the field editor in t
Hi All,I am connecting Nintex with Power BI. It is connected, but when I complete step 7, it asks for Import or Direct Query. I am using Import, but data import is slow and because when I start the workflow with beacons in it, data shows up after 2-3 hours, which is not ideal. So, I am trying Direct Query, hoping the data will be updated instantly in the report. I am no expert in PowerBI so apologies if any silly mistake. However, I am getting the attached error when I try with Direct Query.Is this something anyone can help with, please?I have noticed that in step 9 Tip says Data fetching may take up to 3 hours.Nintex Help Link - https://help.nintex.com/en-US/analytics/OData/PowerBI.htm
Hi all, I'm trying to build a form and the repeating section isn't letting me add any controls. What am I doing wrong? I’ve tried to drag every field to see if it was just an issue with these particular fields, no luck. Then I tried to add them manually from the list of fields on the left and still no luck.
What ‘object’ does salesforce store custom labels in?
The record couldn’t be saved because it failed to trigger a flow. A flow trigger failed to execute the flow with version ID 3015800000058CB. Flow error messages: This interview has been terminated as another interview in the same bulk execution request failed with the following error: An unhandled fault has occurred in this flowAn unhandled fault has occurred while processing the flow. Please contact your system administrator for more information. Contact your administrator for he
I’m looking to provide end users with the ability to export data from a table to a .csv file without column headings (field name/labels). Is this possible with the current exportData() method?Thanks - Jeff Rutter
Has anyone been able to toggle a slider from a row action? I’m trying a user experience different than opening a drawer, but want the slider info to execute from the row data
Not all of our users have skuid licenses and we currently rely on VF override pages to route the user to the appropriate skuid or non-skuid page.As we plan our move to Lightning Experience, we want to leverage the new Salesforce components and incorporate skuid alongside. This complicates the design, but also I can’t even tell if there is a way to do this when not all of our users have access to skuid.Are we stuck in classic for now? Or is there a way for skuid/non-skuid users to co-exist in Lightning Experience?I suppose one way to do this (if more complicated than I would like) would be:Create separate profiles for non-skuid users Create different versions of lightning apps (one with skuid pages, one without) Assign the lightning app that does not use skuid pages to the non-skuid profile, etc…
Title and attached pictures Console error: Home Page Component: Previewing Page:
Hello, I am working on a page to display a simple table listing out new employees. I would like to group the employees by their start dates and add an empty/caption row to divide up the blocks of records to more easily scan the page. Please see the photo for what I am trying to replicate. Currently I am just sorting on the start date but I would like to know if there is an effective way to group the rows by start date and subsequently generate a row to divide the groups. If anyone can explain how to accomplish this that would be wonderful! Thanks.
Do aggregate models have the ability to group on long text area Salesforce fields. When trying to group on this specific field, the model is not even showing the field (however, I am able to group on other text fields that are not long text fields) fine. Is this a limitation?
We have a queue within a panel set. The bottom scroll bar arrow is now showing up (see picture). I was wondering what could be causing this to occur?
Critical problemI updated to the newest release, and my Ui fields are not adjusting correctly for timezone offsets.When I reference a datetime value in a Ui field - it’s saying it’s in my time zone, but it’s actually reading the time in UTC.Is there some setting that we have with the update that’s making Skuid mess this up?Help - please 🙂
I’m trying to build a Skuid table that displays the Campaign Influence object. I found this thread - https://community.skuid.com/t/campaign-influence - which at the time the campaign influence object was not available via API. However, it looks like that was fixed in the Winter '17 release.I was able to select the CampaignInfluence in Skuid, however, when I try to view the page I get the following error: “1. You do not have permission to view records of the CampaignInfluence object. Table Component could not be displayed.”Anyone know if this now works or what I need to do to get it working?Thanks,Andrew
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.