Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
My queues are displaying odd after the Brooklyn update, it’s almost as if they’re being condensed, prior to Brooklyn this was not an issue.
I’m trying out the new Deck component in the unified builder. I can trigger an action from the deck on click or swipe to open a popup. Works great. However, nothing happens when I set it to open sliding panel. I assume it should work like mobile builder where on click/press/swipe a panel enters per the setting on the panel, but regardless of the trigger I set, no panel appears. Maybe I am missing something.
I am testing Brooklyn in a sandbox. I have a popup where I create a new task record. I have a required field that is conditionally rendered only if a check box is checked. That checkbox is not checked, but the required field is still rendering. As a consequence, I can’t save the record without completing that field.
Date pickers, within a page include, within a popup are not rendering correctly. The date picker is below the popup.
Hi Guys,I’ve got a use case where I want to filter a model based on varied conditions that a user might select. The problem is that I don’t know what these conditions will be ahead of time.So my question:Is it possible to add conditions to a model at dynamically at run-time? I don’t mean activating quiescent conditions with setCondition, but rather adding a totally new condition and re-querying an existing model.I’ve tried variants of this type of thing, but just can’t get the new condition into the query. var tasksModel = skuid.$M('Tasks');<br>tasksModel.conditions.push({ type: 'fieldvalue', field: 'Id', operator: '=', value: 'Apple', inactive: false, name: 'Apple', encloseValueInQuotes: true }) tasksModel.initialize().register().updateData(); tasksModel.soql;<br> Any ideas would be greatly appreciated.Thanks,Dan ArnisonPractiFI
In Brooklyn, an iFrame embedded in a template field is not rendering correctly. I have the width set to 100% and the height to 500 px, and the frame is rendering much smaller.
These filters on the Queue used to work properly with each stacked on top of each other. They are on top of each other and the title seems to flow into the down arrow section.
Hi,I wonder if anyone found a simple enough solution to thisMy goal: Trying to have a dashboard which contains data from multiple objects/modelsand have he ability to filter using a date range among other filtersI’ve done a similar request in the past , but it was just to pass 1 data Now not really sure how to do this for a date range…Here’s what I used in the past.Any ideas? preferably without JS , but if no choice…Thank you
We’ve made Skuid pages using the new unified composer, have created the Visualforce pages to redirect to those Skuid pages, and set the button/link/action override settings for “Tab” and “View” on the respective objects to our new Visualforce pages. The Skuid pages display successfully in desktop Salesforce, but are not displaying in Salesforce1 (it instead shows the default mobile interface). We’re using Salesforce Classic. What are we missing?Thanks for any help here!
Hi I used the update all the themes button in sandbox with no problem. The styles stay pretty much the same. But I see a lot of different changes when I did the upgrade in other sandboxes. We do use our own custom theme. It’s the same themes in all environments. I don’t understand why updating the theme button would work differently in different sandboxes. Can you please advise?
I keep forgetting what to search for in the community. Also can’t find this in help.skuid.com
Trying to apply a table filter in order to sort a field by its values such as “1a, 1b, 2a, 2b, etc” and not only does the filter not return any data, it is also accompanied by the error: “Error:unexpected token: ‘a’”. When the filter is off, the data shows.
I have a rich text component that needs to be registered to one of two different models no pageload depending on the value of a field. What’s the best way to accomplish that?
I hope this is an easy, out of the box solution 🙂 I have a search box that allows me to search for my opportunity records and other user’s opportunity records using the “Search Rec Owner”. One of my conditions set on my model is as follows: : The current setup populates all the records and can filter out the records as explained, however, is there a way to create a button that when pressed, will only show the running user’s records? This would eliminate the need of a user having to type their own name into the search box. Thank you!
We installed Brooklyn in a sandbox we are working with and have noticed a couple of peculiarities when it comes to page includes.1. Inline Javascript in our page includes doesn’t appear to be functioning anymore. However we were able to run the script in question from a button press. Has anymore else in the community experienced this?2. Passing query strings to page includes has also presented some problems.a) Date fields don’t appear to be making the trip from parent page to page include anymore.b) Originally when passing URL parameters in query strings to page includes, referencing a lookup field through the Skuid merge syntax would provide the Id of the relevant record to the page include, now it appears to pass the nameEg. Passing {{$Model.Opportunity.data.0.Pricebook2}} now provides “Standard Price Book” instead of the 15 digit Id. We are now having to provide {{$Model.Opportunity.data.0.Pricebook2.Id}} to get the same functionality.Is this a bug or a deliberate change? A lot of
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)?
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.