Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
For some reason I do not see the Skuid header that allows me to customize themes. Does anyone know why it would disappear?
I have a single page app prototype I’ve been working on in Banzai. It has a model called State that has no Salesforce object and several ui-only fields that I use to store the UI state at any given time. UI components such as navigation items, buttons and row actions fire actions that update the fields on State, then Javascript event handlers read that and drive the UI change.In Banzai it has worked beautifully for months, but after a recent upgrade to Rockaway 8.10 it stopped working. After some digging, I found that Rockaway doesn’t seem to allow updating ui-only fields on a model with no underlying Salesforce object. If I bind my State model to a Salesforce object, everything works again.Any idea why that would be the case? My model really only has a client side purpose, so binding it to an object doesn’t make sense.
I’m encountering this error when running a snippet that creates several dynamic models.Here’s the console error:And here’s the data for the error: [&nbsp;<a target="_blank" rel="nofollow"></a>&nbsp;<br>&nbsp;&nbsp;&nbsp;{&nbsp;<a target="_blank" rel="nofollow"></a>&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"id":"ProgressNoteInteraction",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"preventUnloadIfUnsavedChanges":true,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"isProcessing":1,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"calloutIterator":1,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"lastSuccessfulCallout":0,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"objectName":"Interaction__c",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"isAggregate":false,
I know you have far better things to do with your time, but here’s an fyi for whoever creates the release notes:
I been trying to integrate skuid with Authorize.net. I did research on authrorize.net integration as well as skuid integration and tried different approach but I have not been able to get to the point where both system integrate. I know skuid does have some functionality to integrate with authorize.net. I would be glad if someone could help me with this. Thank you !
I was trying to refresh the a model so that it will include the newly created record that i created, but When i checked, the query of the model that i refreshed using model.updateData() didn’t change.var field = arguments[0], value = arguments[1], newDocumentLink=‘’, firstRecord = ‘’;var linkModel = skuid.model.getModel(‘NewContentLink’);var noteModel = skuid.model.getModel(‘ContentNote’);var refreshContentDocumentLink = skuid.model.getModel(‘ContentDocumentLink’);var refreshContentVersion = skuid.model.getModel(‘ContentVersion’);var activeContact = skuid.model.getModel(‘SelectedContact’);var activeAccount = skuid.model.getModel(‘SelectedAccount’);var newContentNote = noteModel.getFirstRow(); var contentLinkCondition = refreshContentDocumentLink.getConditionByName(‘Link’);var contentVersionCondition = refreshContentVersion.getConditionByName(‘ContentDocumentID’);if(activeContact.data.length !== 0){ firstRecord=activeContact.getFirstRow();}else{ firstRecord=activeAcco
Hi,I’ve set up two pages for SalesForce1 (they are not built within the mobile composer, they’re desktop pages made fully responsive).My problem is that the Skuid Pages work perfectly fine in SalesForce1 for Android but refuse to render in SalesForce1 for iOS.I’ve inspected the page in Safari and noticed tons of CSS declaration errors, which apparently only show up in Safari (neither in Chrome nor Firefox nor some other browsers). Nevertheless the page renders just fine in all browsers.Has anyone experienced something like this before?Cheers
Hi, How can I change the language of inline Error messages? We have a german application. Custom labels are fine, however inline error messages seem to stay in english, even the User has it’s profile set to german. When I checked the labels page, all the Skuid labels seem to be english only and I am not able to change them. The one I need isn’t even on the list. Anyone knows a solution for that?
Has anyone done anything with broadcasting events between Lightning Components and a Skuid page embedded together in a Lightning App? For example: <aura:application> <c:myComponent/> <skuid:page name="MySkuidPage"/> </aura:application> Two questions really: Is it possible for myComponent to emit events that can be received in MySkuidPage? And can MySkuidPage emit events that can be received in myComponent? This page suggests it should be possible, though having used the code (with some slight modifications to call my own event) in an app similar to the above, there’s an error “Uncaught SecurityError: Blocked a frame with origin “https://{mydomainhere}.lightning.force.com”; from accessing a cross-origin frame.” I think this may be the LockerService restrictions. I’ve tried rolling back the API versions of the components to v35, but I get the same error message. Has anyone experimented with this or have thoughts on if it is possible?
rockaway 8.10, cs7 with winter 16 patch 6, custom domain I brought this theme over from another org. did the export/import theme and then also brought over via change set the static resource for the theme.
We’re deploying a bunch of pages to a different sandbox for testing. Used page packs and change sets and everything seems fine, but I’m getting an issue with a custom theme (different post), and this issue with page includes. I’ve tried deleting the page include and adding it back in the page builder but it still does this. I’ve never seen this before, usually it just shows up blank if it doesn’t find the page include. this is version 8.10, Winter 16, instance cs7, with a custom/my domain setup other page includes are working in other places. and then there’s also this - when a page include has an error, it loads the standard sidebar and header and puts the error inside there
Is there a formula to return the current time in a UI-field?
what's the best solution for making a field in a table row not editable based on a value. For example...I only want to allow the user to enter a percentage if the team member role is equal to External Sales. Also, if the user changes the role from let's say Sales Admin to External Sales the percentage should be blanked out and made read only.
Hi,I have a snippet where I will have to handle exceptions :function(result, event){ if (event.status) { //Do your operations } else if (event.type === ‘exception’) { alert(event.message + event.where); } else { alert(event.message); }}instead of alert to User , how to display nice popup kind of error message in skuid (or jQuery) ?
We’re getting ready to try some Skuid pages in the Lightning UI and we’re off to a bad start. When I click on Build Pages in Lightning, I get a URL No Longer Exists screen. Any ideas? The recommendations on this post were no help: https://community.skuid.com/t/build-in-lightning-issues
What would be the best way to show how many days are between two dates? Ui Only field with a formula? Custom renderer with JS?Right now I would like to show in a table the number of days between the CreatedDate and Today, however this could be used to compare two dates on the same object and get the duration of days between them.
Does anyone see anything wrong with this?Renderer isn’t working. No console errors other than ‘Refused to set unsafe header agent’Seems like somehow the field metadata isn’t getting overwritten? I’m just getting the standard values for the picklist. I’ve watched the rendering in the console, and the picklistEntries array is definitely getting populated with the right values. 'renderPRLLists': function(field,value){ value = skuid.utils.decodeHTML(value);<br>var listModel = skuid.$M('CreatePRL_Lists'),<br>picklistEntries = [];<br>$.each(listModel.getRows(),function(i,row) {<br>picklistEntries.push(<br> &nbsp; &nbsp; &nbsp; &nbsp;{ value: row.Name, label: row.Name, defaultValue: false, active: true }<br>);<br>}); &nbsp;<br>field.metadata.picklistEntries = picklistEntries;<br>skuid.ui.fieldRenderers.MULTIPICKLIST.edit(field,value);<br>field.model.updateRow(field.row, field.id, value, {initiatorId: field._GUID})
Is there any way to rearrange the users on the right side panel? I am brand new at Skuid, thanks!
I want to know if there are alternatives to Salesforce’s getValues and getInstance custom settings methods so that I can directly refer custom settings data in Skuid. I know that we can create models based on custom settings but I see below issues with this approach:1) It is not possible (or is very difficult) to use hierarchy custom setting if we want to leverage all three locations- UserId, profile and Org default.2) Aren’t we adding extra SOQL query to Skuid page by using model for custom setting? Not sure, if this way, we are taking benefits custom setting offers.I did brief search on the community but could not find better way to implement custom settings. Please let me know if there is.Thank you!
Suppose I have two snippets with the same name.(please hold all the WHY WOULD YOU EVER DO THAT!?! comments… if the answer is favorable this will save a lot of time)One snippet is on page, another is in a static resource.Which will run first?Does it depend on the order that they are entered in the builder?
UPDATE: I resolved the issue I was having. I was using “In-Line(Snippet)” instead of “In-Line”. So that brings me to a new question. How and when do you decide between the two?I’ve built some pages in jsfiddle that use jQuery, but I am having some trouble transferring those into Skuid. Can someone point me in the direction of some materials that would help me understand the differences I’d need to learn to include jQuery in a Skuid page? Or some good use cases?Right now, I am working on opening a hidden div and making it fullscreen. Once I click on another div, the jQuery code applies a new class to the hidden div which takes away the property display:none, and adds z-index: 1000.I’ve tried loading in the jQuery library as a static object, and also tried linking externally to the URL. I am thinking there is some syntax that is different when going from a platform like jsFiddle to Skuid.Any help would be greatly appreciated.Thanks.
HI,I wonder if anyone could help me with that.I have this snippet that i want to use as Row Action to clear a Date field’s value But not really sure how to get it to work on current row from which i clicked the actionThis work well for 1st record of a table or on a detail page. But not on any row after the first oneI Understand it’s because of ‘model.getFirstRow()’ but looking at the model api documentation, I could not find what I should use instead var $ = skuid.$,&nbsp; &nbsp; &nbsp;model = skuid.model.getModel('AccountTab'),<br>&nbsp; &nbsp; &nbsp;row = model.getFirstRow();<br>model.updateRow(row, {Favorite_date__c:''}); Thank you
I would like to have a table row action that would send an email or . Is that possible and how would that be done?
Hey all,I’m working on a redesign of some of our Skuid pages. A lot of our high-traffic pages are quite complex and include multiple (10+ if not more) models and tabs. The upshot of this is that page load speed is high (read: really high).I’ve made some significant improvements by doing the following:Limit # models, model fields and records loaded per model Use page includes/popouts for creation of new records (e.g. new tasks, opportunities) Load custom CSS as a static resource instead of inline However, I’m getting the feeling there must be more I can do. In an ideal world, I would like all pages to load in less than 5 seconds. Can anyone comment on whether this is realistic (perhaps I should aim for even better load times) and what are some pitfalls I should watch out for? Some other posts I’ve seen point out that tab sets are often a culprit, which made me I’m curious about what else might be dragging the speed down.Thanks in advance!
Hi All,I am displaying a table in a pop up and giving ability to select multiple records of the table at a time to perform some action. I am also using search box is provided by skuid for searching records in the table. Suppose I selected 2 records and after that used search box to search another record, the previously selected records are getting unselected. Anybody is having idea, how to hold the checkbox values for selected records even after use of search box? Thanks,Gayatri
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.