Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
What would be the best way to get a carousel component onto a SKUID page? Should we build a custom-component using SKLUID options? Or, should we plug-in an existing Carousel component?
I installed the GA release on Friday and tested the majority of our pages - but didn’t think about the fact that most of our users are on IE … or that this would make a difference. (I’m on IE 9, and would guess that most of our users are, too.) This morning, the vast majority of my pages don’t work in IE - action framework (seems to mostly be affecting tabs) doesn’t load anything (models or components). Even the page builder is out of sorts:
I’ve created a skuid master page with a Page Region, how can I embed a visualforce page into the skuid page region and view all the contents of the visualforce page?
I have history enabled on an object and have a model pulling from that history object. I am able to successfully run conditions on the ‘ParentId’ and ‘Field’ fields, but conditions on ‘OldValue’ and ‘NewValue’ are not working. I’m not sure if this is because the field type for these is ‘ANYTYPE’. I tried overriding the meta data to be string, and still was not able to run a condition on those two fields. My end goal is to be able to see when a boolean field changes to ‘true’, who changed it and when. My first thought was to use the history object to do this. I realize I could write a trigger and record to a custom field or object, but would like to avoid that for simplicity if possible.Anyone else experience similar issues?I’m on Skuid 8.15.9 - I have not tried this on other Skuid versions.
I’m having trouble creating a new page in Skuid native. When creating a page from scratch I get an internal server error. When creating using a page template, I get a required fields error (this makes sense since I don’t have any objects). The master page selection is blank. And I’m not sure what the XML structure is so I can’t paste in XML from a prebuilt page.
When creating a Date condition on an aggregate model… with a specific date entered no data is returned. with a value of “Yesterday”, data is returned.
I need some help with this. I have a scenario when a checkbox is true, i want to update contact mailing adderss into other address. Here i did some extent. But not solved completely i am facing some issues.Thanks in Advance. Here is my code: var field = arguments[0], value = arguments[1], $ = skuid.$; field.element.html(skuid.ui.renderers.BOOLEAN.edit({ onChange : function(value){ var conRow = skuid.$M(‘Contact’).getRows()[0]; if(value) { conRow.OtherCity = conRow.MailingCity; conRow.OtherStreet = conRow.MailingStreet; conRow.OtherCountry = conRow.MailingCountry; conRow.OtherState = conRow.MailingState; conRow.OtherPostalCode = conRow.MailingPostalCode; } else { conRow.OtherCity = ‘’; conRow.OtherStreet = ‘’; conRow.OtherCountry = ‘’; conRow.OtherState = ‘’; conRow.OtherPostalCode = ‘’; } skuid.$M(‘Contact’).adoptRows( field.row, field.row); } }));
I have a table on my page, with a rowaction to show a popup. There are a series of action steps before the popup: Show message, Activate and set a condition, Create a new row, Query model, Run a snippet, Show popup.The javascript snippet conditionally creates a new row in another model and then saves the row. That row is critical to subsequent activity in the popup dialogue. This is what the javascript looks like (without the conditional coding): var myModel = skuid.model.getModel('MyModel'); myModel.createRow(); myModel.save(); My understanding is that the save() runs asynchronously, that is, the snippet will complete even if the save is delayed. Potentially, the popup could open and user activity take place without the new row in MyModel. Would a callback function prevent that?What I have in mind is this change to the save statement: myModel.save( { callback: function(result) { saveIsDone(result) }} ); function saveIsDone(result) {} Will a null/empty function such as saveIsDone() b
It seems as if when you put certain components in the sliding panels, some functionality is lost. Namely:Page includes don’t show up (I’m assuming this is similar to drawers) My javascript for dragging and dropping to set table row order I’m assuming that this occurs for a reason that isn’t fixable, but I’m looking for someone (Andrew?) to confirm that.
Hey friends.Is there any way to get and skuidify a list of recently changed fields for all objects (or a select list of objects)?
Love Brooklyn … I have set up a page using a deck for accounts - I would like to alter the background of each card based on a image or color that varies on a field value, (Similar to how a calendar background can be varied. I have created a url field with the image I would like to use as a background each time … I have enclosed the deck in a wrapper and selected the url field as the image source but it wont work. I can drop the actual url into the wrapper background image url box and it works well… it just lift it from a field value (to make it variable) - although there is a selection box for field there.
I have a Skuid form that doesn’t display updated information even after the model containing the information is requeried. The form displays information on office locations (modeled as Accounts) of an organization (modeled as the parent Account of the offices) and the staff at those offices (modeled as Contacts). A popup on the form allows addition and editing of the staff Contacts. Also included on the form is a custom object called a GAR, which is used for tracking information on submission of the form by our users. When a contact record is saved on the popup, an action is triggered to set a status value on the GAR record to “Awaiting Validation”. The save of this GAR record triggers a Process Builder linked to the GAR object to examine the data on the staff members for the organization to see if it meets our business rules. On completion of this examination, the appropriate values are written to two fields on the GAR record. These fields are configured to be displayed on the main fo
For the sliding panel, is there a way to make a panel show when a page loads, and then give the user the option to close the panel later?Use case:Display Chatter feed every time a user refreshes a page so that they’re consistently using it Give the user the ability to hide it after the load to free up screen space
I’ve created several skuid reports and want to place those report links in a table so I can easily access them from a tab view in skuid. Any ideas how I can achieve adding the reports to my custom skuid page?
I am trying to create a data model/skuid page using the new Salesforce standard objects WorkOrder and WorkOrderLineItem. My skuid package does not see these objects. These objects require an API version of 36.0 or greater. How can I make them visible to my Skuid package so that I can create a data model that uses them?
This seems like a no-brainer…but I’m at a loss. I want to be able to create a new child record (that opens in a skuid page) from a table on the parent. There are too many fields on the child record to just do an in-line creation. Thanks!
I had created a master page SortableTableMaster. Then i created a child page for that master page as “test2”. But when i opening that “Test2” page then i am not able to see page region section. Thanks, Raj
Pretty sure this is a no go, but I am curious if Dyamics can use a Skuid Page instead just like page overrides in Salesforce.???
I really want to start using Brooklyn, but this is a problem…
I am trying to package 2 pages into a staticresource but it would not package after 20 hours of loading. Has anybody had this issue?
Is there documentation on the new Action Framework Logic in Brooklyn? I tried looking in the tutorial page but could not find anything.
After creating a new model for GroupMember and putting either one or both reference fields on a table “GroupId” or “UserOrGroupId” after selecting a valid user or group the display flashes the id then stays blank, I would expect it to display the name of the user or group that was selected
I just installed Brooklyn in a sandbox. Everything is working well, but I am getting an error on some Force.com sites I have built with Skuid VF pages. I built these awhile back following this great tutorial - http://help.skuid.com/m/11720/l/114236-build-force-com-sites-with-skuid#!prettyPhotoEverything worked fine until I installed Brooklyn. Now I get this error on load - ’ http://partialcop-abelcine.cs62.force.com/abelcine/resource/1480529442000/skuid__PlatformJS Failed to load resource: the server responded with a status of 404 (Not Found) ’ PlatformJS is no doubt new, and is not a public resource. Is that perhaps the problem?Any idea what is going on here?
I would like to build a universal UploadFile page to include in places like drawers, where I can have a button called “Upload File” and shows a popup with the page include. That page include would get fed an id parameter, but I would like to build a dynamic model that can look at the id getting loaded and decide what type of SObject that is and then use that record as the basis for the File Upload component in the page include. Is this possible?
Trying to update our Skuid version in Production prior to our code deployment as need version 8 for new items being released.But all links from https://skuid.secure.force.com/skuidreleases get an error that the app cannot be installed and looks like its been deleted.As this could block our release this is very proplematic now.
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.