Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I just noticed this today. Not sure if it was happening before 8.8.
Hi All, I’m having a problem with a UI-Only formula not calculating correctly. To make it simple, I’m just trying to get the value from another model into the formula first and then I’ll add the rest of the formula once I know that’s working. I believe I have everything right, but my UI-Only Field “QtyPerCtns” value should be the same as the value entered in the Job Qty Produced field, but it’s not updating! I know it should work, but can’t figure out why its not. I have the JobSelect Model above the Receiving Model which is where the UI-Only field is located. Any idea what would be causing this? Thanks for the help!
Hi, It seems when having a table with many rows and summary, If using the option ‘Keep headers visible’ , that the summary often appears multiple times when scrolling back up Me and Barry went back and forth on it in case interested see this post towards the end of thread Here’s basically Barry’s summary of issue: When table repaints, it must ensure that the column summary cell gets redrawn properly and the “floating” one eliminated. And here’s xml to reproduce Preview page Scroll down to bottom Scroll up to top Change “Show Top” field from True to False <fields> <field id="Name"/> <field id="CreatedDate"/> <field id="Fax"/> <field id="Phone"/> <field id="Rating"/> <field id="AnnualRevenue"/> <field id="NewField" uionly="true" displaytype="FORMULA" precision="9" scale="2" readonly="true" returntype="DOUBLE"> <formula>
Is it possible to force a field to re-render in a snippet?Here’s the use case:We have two datetime fields, Out Date and In Date. The In Date shouldn’t be before the Out Date. We have a field renderer on In Date that prevents the user from selecting a date in the datepicker that is before the out date: var field = arguments[0], <br> value = arguments[1];<br>skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value);<br>if (field.mode==='edit'){ if (field.row.CheetahBMS__Out_Date__c !== undefined){ var dateInput = field.element.find('input.hasDatepicker'); dateInput.datepicker("option","defaultDate",skuid.time.parseSFDate( field.row.CheetahBMS__Out_Date__c )); dateInput.datepicker("option","minDate",skuid.time.parseSFDate( field.row.CheetahBMS__Out_Date__c )); dateInput.datepicker("refresh"); } } This works when you just edit the In Date. However, if you edit the Out Date, it does not rerender the In Date and you are able to choose a date that is bef
Hi community~ Several people have asked how to have Skuid pass ID’s when creating a junction object record. Glad you asked! In this scenario, I am using the standard Salesforce objects of opportunities, products, and opportunity products (the junction object as shown from schema builder below). In order to pass the ID of the opportunity to the new opportunity product record, a specific opportunity must be selected. Here is what my opportunity detail page looks like to the user: To add the opportunity product record, the user would click on the Add Product button which on the back end looks like: and the popup looks like: In this scenario, the popup is connected to a page include. The query string should be as shown: id={{$Param.id}}. This will pass the ID from the opportunity record to the opportunity product record. On the front end, the popup my users will see looks like: The popup automatically gets filled with the opportunity ID and today’s date by following the directions belo
I tried moving my production pages to sandbox by using this tutorial: Page Not Found — Skuid v15.1.6 Documentation I packaged them up, then I opened the static resource and did the save as .json . I then uploaded this JSON file into the static resources in sandbox. When I try to unpack the file does not appear as an option to unpack. Anyone have any ideas?
We are seeing a a strange problem whereby Internet Explorer 11 consumes memory each time a VS/Skuid page is loaded, doesn’t release this memory, and eventually crashes. We are running a a single Skuid component in an an otherwise empty VisualForce page. Users are in a tight workflow of navigating between three pages (search, security check, and member views). The member view page is rather large. Each time one of these cycles is completed IE11 consumes another ~40-80mb of memory and somehow doesn’t release the memory when browsing to another page. Closing the tab in question releases the memory. You can see an example with four members: Strangely, even browsing to Google in the tab in question doesn’t seem to result in the memory being released. The example below shows two cycles of search, security and member, and then typing "www.google.com"; Any ideas?
I have a simple custom Salesforce button that open a new email with email address when clicked. The button works well in standard Salesforce page but when I add to Skuid the link does not work well, I am getting the following error “You have sent us an Illegal URL or an improperly formatted request” Does anyone know what I am missing?
Hi, I have setup a Page Assignments to redirect users to a SKUID page when the Record Type is Program. License has been allocated to users but the redirect action did not work for non Administrator Profile users (these users were assigned a license), where they were redirected to the Standard SFDC page. All visualforce Page and apex components have been added to the other profiles. Is there a Profile permission that needs to be granted? or Is there a step that I had missed? Here is my page assignment setup: Here is my Visualforce redirect Page:
Hello, Maybe this has been mentioned before but couldn’t find anything on the community, but is it possible to set a specific field’s rendering as read or read-only based on the value of another field? Based on a status I’m looking to make a field Read-Only and then when it moves out of that status it should be read (with inline editing again).Thanks!Jeff
We have a ui-only Formula(Text) field that’s used as a grouping on a chart. The formula is written as follows:MONTH_NAME_SHORT({{CompletedDate__c}})+" “+DAY({{CompletedDate__c}})+”, "+YEAR({{CompletedDate__c}})For some reason it seems to be evaluated for CompletedDate__c minus one day. For example, if CompletedDate__c = “2015-03-01”, then the formula evaluates to Feb 28, 2015.Do you know why that might be the case?Thanks,Kartik Sethuraman
We are using tasks for correlation meetings. Users are assigned tasks and they can report on their progress using chatter. In correlation we show the tasks in a list view. On the left hand side of the tasks there is a “sk-icon-comments” chat bubble that is a Pop up and pulls in the tasks Chatter feed. It would be awesome if I could show a comment count somewhere on the row so we could see if there are comments on the task. If there aren’t it is a waste to click each one. But if a task has comments it would be nice to know. Thoughts? Or better ideas?Thanks!
Is anyone else receiving this error? I’ve been getting it now for several weeks. I’ve tried 3 browsers on two different computers, nothing seems to work.
Hi guys,I’m building out a Chatter Table Page via Skuid to show all the changes made to Deals. I’m using the Opportunity Feed as an object and I set up a condition for the table to focus on one specific deal to test it out, but for some reason, even though it says “Tracked Change”, it’s not showing any information.Where did it all go wrong?
Apparently this doesn’t work?
I am building a directory of our sales team and I wanted to make the popup that has detailed information about the person. I would like this row action to be a picture of the person. Here is a clip of the table and I would really like the picture to be the button that opens up the popup window. Is there a way that I can do this? I have limited knowledge of JavaScritp and CSS. Please help! Thanks Sierra
Hi guys, I’m on the home stretch for a fairly large cross connection project I’ve been working on between SQL server, Odata and SF. I’ve setup an OData connection using progress.com. This connection works perfectly when pulling data into a model in SKUID and SF. PROBLEM: I can’t save a new row back into SQL server using ODATA because of the following error: ‘There was an error connecting to the proxy.’ Any ideas?
Just curious if anyone’s run into this error before?
Just updated to rockaway 8.7, and then discovered this. 😦 I have a bunch of ui-only picklist fields that have started rendering with values as a TEXT displaytype instead of the way they used to display. field: picklist metadata: runtime: Also, my console looks like this: The same pair of errors for every ui-only picklist field, I think.
Hi, Experiencing a weird issue I just added a navigation component to my home page , via a page include, but for some reason it’s not applying the Theme specified on the page. Any other page that uses the same page include all show properly This is how it should look And this is how it looks on home page (turns the font color white, so my navigation items are invisible…) Any idea why? Thx
I have just loaded in a package to a client’s sandbox with Skuid Pages. The entire org won’t be using Skuid at this time, so I am using VF override pages that should direct the appropriate user to the correct Contact Tab & View pages. I have created Page Assignments that give the appropriate profile access to those Skuid Tab & View override actions. Furthermore, I have ensured that the profile has the Skuid Page Viewer Permission Set. I personally can see the SKUID pages, but I am System Admin and installed SKUID, so I’m sure I have all permissions necessary. However, my users in that Profile aren’t able to see the SKUID pages. They are just being directed to the standard Tab and View pages. Is there a permission setting that I am missing? Here is the VF override page code that I am using: <apex:page standardController="Contact" recordSetVar="a" extensions="skuid.Redirects" action="{!redirect}?objectType=Contact&amp;actionType=Tab"> </apex:page> <apex:pa
https://skuid.freshdesk.com/support/login
Is there a way to implement the functionality of “Printable View” in skuid?
Is there a way? Or should this be an idea?Also, skuid-grunt skuid settings (like model sources, etc.)
I’m new to Skuid and am trying to setup my first connection. I have setup a Model Service to link to MuleSoft via the REST API. This appears to be working. I built a model to call the service and it successfully connects, but when I add parameters, something breaks and I lose my fields. The issue seems to be with the Service URL I’m using. Here’s a screenshot of the fields I see when I use the service URL without the parameters: “/productscope” When I add the parameters, it replaces the field names with numbers (see screenshot below), which I can’t tell what the count corresponds to. The count goes up to 68. There should be 27 fields and 46 records available in the API call. Service URL with parameters: /productscope?client_id={{client_id}}&client_secret={{client_secret}}&ProductNo={{ProductNo}}&ProductFamily={{ProductFamily}}&Supplier={{Supplier}}&PackageType={{PackageType}}&Grade={{Grade}}&UOM={{UOM}} Any ideas would be appreciated.
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.