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
I have a save button that has multiple actions, but begins with saving of two models, each that contain required fields. On the save, if an error occurs, the model is supposed to roll back changes.The two fields are running on two separate models, one that is to the notes object, and one that is to the leads object.Field 1: Body: Notes ObjectField 2: Date: Leads ObjectWhen the save button is hit with Field 1 blank, the save stops and the actions after the save on the model do not occur. However, when the the field 2 is blank, the save continues and remaining actions on the save button are executed.I believe this is occurring the way it does is probably the field 1 is required on notes object (not sure as I cannot see the fields associated with notes). My question is, without making the field 2 required within Salesforce, how can I get skuid to halt the save and all further actions on the save button if the field is blank?
I feel like this would have been asked before but cannot find it.Is there way of tying an action to the Search Component if there are “no results” found? When using a model I’d just say if Model was empty but don’t see same using the Search component.I’m thinking of something like rendering a button if the search was empty so user could create a new record, but only showing it in that case.
We have a ‘Order Detail page’ which is just a printable page linked by a button on a custom object. It is not accessed through any VF override.Our partner user receives the Salesforce login page when they click this button, which will not work as it is the full SF login, not the community login.
How long does it generally take to generate support files? I know that it takes some time but it has been running for over an hour and has not changed.
I have an aggregated table where i am having a row action. How to capture row action in one of the template field in the table. I approach using JavaScript row action snippet, but the snippet will work for regular name field on regular table only. Is it possible for row-action to perform whenever I click on View column (0/9 in figure) ?
Does the ability to set conditions and/or render based on the alias someone is assigned within their user profile. For example, if an individuals alias is DG, could this be set as a condition or render condition.I did not see this ability in the rendering options, but I was thinking there may be a way to do this by setting and activating a condition where the value is the user alias.
I am creating a new popup to allow data entry. It is launched as a Global Action from a Table component. I had added the fields, but about half of them show Read Only, even though field level security is not set to Read Only. I am not able to remove the check box. Any ideas why this is happening and how I can correct it?
I have a Skuid page which displays a simple message and I have included it in the lightning component (below is the code) But is throwing the following error: Let us know what might be the issue. Thanks!
Hi Team, Could you please help me on below requirement, Is it possible to show a popup soon after tab out from a field? Requirement is, As seen below screenshot we have 3 fields which are calculated among them (if I update value in EST.MKT BUDGET then reaming two field values will update based on behind calculation) We would like show a popup to select a field among 2 fields (assuming 2 fields in pop up with radio button) for user friendly, then the selected field value will be recalculated in the main page instead of popup (Showing a popup with 2 fields to select which field value to get recalculate based on the other field value which we given in main page). Will be possible from skuid option (I did some trial error but no luck), please help me some input. Main Requirement: Need to display a pop up with two radio buttons on update and tab out of any field. Regard’
Hello, I default the chart to have a Date Granularity of Calendar Month, I also give users the option to use Calendar Week, Calendar Quarter and Calendar Year. Calendar Month, Calendar Quarter and Calendar Year all display with a label that is easy for the user to follow while Calendar Week uses the week number. Has anyone come up with a solution to show the date for the start of the week rather than the week number? Cheers Damien
I followed http://help.skuid.com/m/models-conditions-filters/l/672670-the-google-data-source-types-drive-and-calendar this to setup Google Calendar but still i’m getting the following error:Uncaught TypeError: Cannot read property ‘indexOf’ of undefinedCan somebody help me out on this?
I have a chart (column), when user clicks on one of the series, I want to set List of AccountId (multiple values) to one of the data model’s condition. I used {{rows.0.AccountID}} & {{rows.AccountID}}, in both the scenarios i’m getting only one AccountId not the list of them.Is it possible to set multiple values to a condition from chart series? If yes, how do I do that?
I am trying to create a table row specific counter using a data/time field and a formula field that is set to NOW(). The Custom field would be subtracted from NOW() and that would return the countdown timer. I am a javascript noob, so any help is greatly appreciated. I am referencing this counter from W3 schools. Here is my snippet that currently doesn’t. I need help identifying the row field value for a custom date/time field, “MarketingStatusSLAStop__c”. I then need to assign that to either a template field or custom field render, but can’t seem to figure that out. **Again any help is apprecaited. ** var params = arguments[0], $ = skuid.$; var model = skuid.model.getModel('Main\_Contact'); var row = model.getFirstRow(); var dateVar = row.MarketingStatusSLAStop\_\_c; // Get todays date and time //var now = Date.now(); var now = row.Now; //convert from Salesforce date to Javascript date var jsdateVar = skuid.time.parseSFDateTime(dateVar); var jsNow = skuid.time.parseSFDateTime(now); /
I have a regular page name “test”. I have a also mater page name “Test11”. How to make “test” as a child page of “Test11”.I tried to copy XML part from “Test 11” to “test”, it doesn’t work. Any suggestion ?
Can you create a “View All” functionality for tasks where you can view all tasks consecutively in one view without having to click into each one separately? This would mimic the set up in Salesforce.
We are working on upgrading from Rockaway 8.15.17 to Brooklyn 9.5.6 (we have a dev and qa sandbox, dev is using Brooklyn and qa is still on Rockaway). We have some custom components that stopped working in our dev environment after the upgrade to Brooklyn and we’ve got most of the issues ironed out except for one, which appears to be a bug with Skuid’s sfdc.search(…) function. Our code is virtually identical to what’s in the documentation here: https://docs.skuid.com/latest/en/skuid/api/skuid_sfdc.html However, even though we pass the same request object in both Rockaway and Brooklyn, the sosl that the search(…) function builds is wrong…the sosl isn’t complete and we get an “unexpected token: ‘’” error as a result. Example: The sosl in Rockaway: ``` FIND 'CasePriority*' IN NAME FIELDS RETURNING Skuid_Picklist_Value__c(Name,Value__c) ``` The sosl in Brooklyn: ``` FIND '*' IN NAME FIELDS RETURNING ``` Here's the full method call we're using, in case it helps: skuid.$.when(skuid.sfdc.se
The skuid 10.0.0 developer guide has a statement that I need additional clarification on. Here is the link for the document, and the section I am referring to is at the bottom of the page: https://docs.skuid.com/v10.0.0/en/guide-dev/#in-line-resources-and-page-support-filesIt states: “Also note that, if you’ve implemented server-side behaviors with Apex code in custom components, these behaviors will no longer be possible within LockerService.NOTEThis applies to both in-line resources and static resources.”Does this mean that we will not be able to make apex calls from skuid pages in skuid 10.0.0? I am not certain if this is applicable only to lightning components OR also applies to standard skuid pages?
Does the ability exist to delete page packs once they are no longer needed?
I’m trying to apply the the following CSS class to a wrapper component. Changing these styes in Chrome’s inspect element tool works, but my css class ignored the wrapper I have assigned it to. Anyone have any ideas? I have tried several versions of this and can’t get the wrapper to do it..right .sk-wrapper{ position: absolute; right: 0px;}
I built a page in the regular (not mobile) builder. I tried to keep it mobile friiendly in layout.It loads on iPhone 7 plus fine, but editing text fields cause mobile safari to zoom in. That doesn’t happen in pages built in mobile builder, so there must be a way to stop it. Anyone know what that way is. It is harshing my mellow.
I want to slow down the default animation for a chart. I have a before render snippet which seems like it should work, but doesn’t. The labels part of the snippet works, but I’ve tried two different methods to affect the animation (which are documented in the Highcharts API docs) and they don’t work at all.I’ve tried it on a column and line chart with no luck, failing on initial page load and on selection of a different chart type from the picklist. The chart simply animates with the usual 250ms animation.Has anyone else done this successfully?Here’s my snippet: var chartObj = arguments[0], $ = skuid.$; $.extend(true, chartObj.xAxis[0],{ labels: { step: 2, rotation: 300 }, plotOptions: { series: { animation: { duration: 3000 } } }, chart: { animation: { duration: 3000 } } });<br>
Skuid Platform When I startup a page for the first time after it’s been dormant for a while, it takes an extremely long time (~1 minute) before it ends in an Odata error. When I refresh the page, it then immediately shows my page. When I set the page to caching, I get this prompt: The checkbox “Process Model Client-Side” doesn’t seem to exist under my advanced tab. If I select OK here, I’m not sure what’s going to happen. Not sure where the disconnect is.
Remove the three default button on new event popup on a calendar component
When I try to preview theme using an existing page I get an error “This page doesn’t have any layout…”. Doesn’t matter what page I try. Thanks!
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.