Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
How to test Update Skuid to Banzai Update 9 - Patch 3.1 new feature in our salesforce org?I have installed this. But I am not finding any difference from previous version.
This stems from Rows not being unmarked for deletion after Model Save Fails With 9.3.1, the “Model” property is still required when using “Unmark row(s) for deletion” even when choosing “Rows in Context.” Unfortunately, an in-place upgrade of the sample page mentioned in the post above still fails to function properly with Brooklyn. The reason is that there is no model property (because that property didn’t exist in previous versions on unmark row in context). In order to get the page to work properly, you must go in to the XML to add the property or change Rows to use to “all” then back to “rows in context” (assuming you only have a single model on your page). As discussed in the above post, when using “Context”, a model property should not be required. I see that in Brooklyn, “unmark row(s) for deletion” appears to be combined with “Unmark all row(s)” and they’ve become essentially the same thing under the covers. That said, configuration of a model property should not be needed
Remember user’s last tab not working in IE, it’s working in Chrome…
In the Brooklyn release, the issue Table row action order not respected was indicated as resolved. Unfortunately, while improvements were made, there are still issues with table row actions. Pieces Resolved You can now drag “Edit” and “Delete” from the row action area and order them without the entire table moving The order of the actions in the XML will be respected when the page is displayed Remaining Issues1) Changes to the order of the action from within the builder are not detected as “changes” and “Save” button is not enabled 2) After changing the order and then changing something else on the page to force “Save” to become enabled, the new order is not persisted to the XML 3) Adding a new row action and changing existing order and then clicking “Save” only persists the new row, it does not persist the change in order to the other actions. Steps to reproduce Create page using XML below Move “Edit Row Action” to the top of the list Expected Behavior “Save” is enabled Actual Behavi
When displaying a queue with search filters not shown initially the first item in the queue does not have proper spacing (it’s butted up against the search/filter bar). Note - If you expand the filter and then collapse it, the spacing is then correct. Steps to reproduce: Create page using XML below Preview page Expected Behavior First item in queue should be proper distance away from search/filter box Actual Behavior First item in queue is up against search/filter box Screenshot Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="100" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"/> <field id="CreatedDate"/> </fields> <conditions/> <actions/> </model> </models> <components> <pagetitle mode
Anyone have a snippet handy to open a non-Skuid popup window? I need to open a site in a separate browser window, but I don’t want it to be a tab like the redirect action.
I have an enable condition that is working for all of my fields except a rich text area field. Any idea what the issue could be?
Hello Community.Just a note here for future reference that (at least as of 8.15.15) if you have a snippet in an action framework and the snippet doesn’t exist, skuid will continue with the rest of the actions as if that snippet returned true.
I have two models based on a customer billing object. They are both aggregate models. The first is designed to aggregate all open billings for each customer. The second is designed to aggregate all open billings so that we can view total open billings for our company. I would like to model lookup the value displayed in the second object into each line of the first aggregate model, but am having trouble doing so. Example:Aggregate 1: Open Billings (each line will possible contain multiple billing)Customer 1 - $30Customer 2 - $60Customer 3 - $40Aggregate 2 - Total Open Billings: $130I would like to get the $130 value place on each line of aggregate 1. Thanks for the help.
Hi everybody,I’m quit new both to Skuid and to CSS, so I’m asking for help.I have a button in the page title, and I’d like it to change its color if a particular field in salesforce is true.So I thought about rendering, and duplicating the button to show the red one only in some cases.I went to the page and inspected the code, then copied the css with another color, and told to the second button to get that css, but nothing happens…Here is the css: .ui-button, .ui-widget-content .ui-button.ui-state-default {background-color: #27C77A;} Thanks in advance for any hint.Giovanni
I am building a simple drawer of contacts for accounts. On this drawer I have a filter. It seems my filter is being applied automatically when the drawer is opened because the contacts do not display until I choose a filter option. I want the entire list of contacts to display first, then use my filter to narrow them down. The conditions my filter is using are both set to “default off”.
hello everyone, Have another request that may already be out there but couldn’t find what I was looking for in regards to Table Filters. I have a table with a where the model’s Salesforce Object is the Opportunity. The field I want to filter on is related to the Account as a reference field from the opportunity. How can I create a drop down list of the avaiable reference accounts from my filter? I currently get an input field that gives me a list of accounts when I type inside the search field. My Filter Properties are shown below: Thank you once again skuid community!
Hi everyone, So I was looking into Pats thread from some time back and seeing his snippet. Im applying this to a table with different pick list fields. My question is - How do I point out what picklist to modify and push values to?Sorry I know this is a highy posted topic, I visited many other posts on this but was not able to narrow down the answer.Thanks in Advance!Attached its Pats final code for reference;--------------------------------------------var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); userModel = skuid.model.getModel('User'), userRow = userModel.getFirstRow(), userRole = userModel.getFieldValue(userRow,'Contact.Current_Role__c'), isTeacher = (userRole == 'Teacher'), grpModel = skuid.model.getModel('Guided Reading Plan'), grpRow = grpModel.getFirstRow();// Prevent teachers from making any edits if the status is approved by forcing the mode to read-onlyif ((value === 'Reviewed & Approved') && isTeacher) { field.ed
The problem is that a bunch of fields that are conditionally rendered based on things like record type, aren’t displaying properly within popups. Only when toggling the Record type to -None- and back to it’s original value will display the correct fields. It’s happening on multiple pages and isn’t limited to just popups. I’m hoping this will fix it’s self like my previous stage issue earlier; however, I thought it best to bring it to attention just in case this is an actual issue.
While displaying records in table with pagination, We have found one issue . Issue : After editing and saving a record present other than in 1st set of data, skuid loads back to 1st set of records. When we open the particular set of record then we see the record which was saved earlier is still in edit mode. Eg: In Screen 1 i am trying to update a record named “Budget_2017_Jan” in 3rd set of records of table(Pagination) and save. Skuid defaults loads back to 1st set of data as in screen 2. When we navigate back to 3rd set of records to check for “Budget_2017_Jan” we see its being still in Edit mode as in Screen 3. Screen 1 Screen 2 Screen Version Details: Version Number 8.15.15 Version Name Rockaway - Iteration 13.1 Please let me know how to fix this. Thanks in advance.
Created a date filter on a model with 1 table, however, when I click the apply button, the filtered results are innacuruate. I used the CreatedDate value on the opportunity object. I followed this tutorial to the T: http://help.skuid.com/m/models-conditions-filters/l/138017-create-a-date-range-table-filter#!prettyPhoto Attached are my conditions and filter properties. Not sure what I’m doing wrong. Thanks
In creating a new page, I don’t see the header component listed as a resource.
I opened a page, clicked on a filter I want to delete, clicked on the small red x in the properties area, and now my page is completely frozen. I can’t click on anything else and nothing is happening. Been sitting like this for 15 minutes.
HI community, I have a text field (Asset_id__c) which generates a unique string when a record is created. I have a table which shows the Asset_id__c text field on it. Now this just a custom field and doesn’t act a link to navigate to the detail view of the record. Is there any way to show it as a link and navigate to the detail view of the record when clicking on the link. thank you
I am new to using Skuid and all of the picklists on all pages are suddenly cut in half as shown below. Does anyone know what it could be or how I could fix it?
The main issue is that the ‘Stage’ field for our opportunities isn’t referencing our sales processes which it had in the past. So instead of showing the 5 stages for the team, it now shows all 30 stages. I’m thinking I can use the filter by dependent picklist in to update the condition on the opportunity so only the stages available per record type show. http://help.skuid.com/m/models-conditions-filters/l/204980-use-a-snippet-as-a-filter-item-source-to-…I wanted to see if anyone else had run into this issue or had a more viable workaround.
I created a tool for reviewing performance for our organization. It works well, but for some reason a direct manager is not being shown certain fields. I’m attaching comparison screenshots. Here it is showing all the info the user sees. This is what the manager currently sees. (The columns in blue should be empty and manager-only). For whatever reason some fields on this table aren’t being populated, the only one that is populated is a reference field. I double-checked permissions, and made sure the manager was able to see this data in a normal Salesforce page layout. Any ideas what could be causing this? Thanks! Eulogio
Is it possible to add text into the html attribute in the HTML table when using a table component? This particular attribute and css class contains no text (its the action column table header): I’d like to add the words: Buttons If so, how can this be accomplished? Thanks!
I need to filter the Account records I am displaying in a table based on a field called “Sales Initiative Name” in an account related list. Is this possible?
I am making simple changes to a page in the page builder. Sometimes the Save button does not even activate. Sometimes it does. When it does, I click save, but then when I attempt to preview the page, my changes are not there or not working. For example I just re-arranged my filter buttons. The Save button didn’t even activate. When I preview… nothing changed.Example#2. I added a multi-select filter button. This time the Save button activated. I clicked it. My filter button showed up in the Preview, but it doesn’t work. This is simple multi-select using the existing values on the field in the system.
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.