Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Date selection box seems to show up wherever it wants to for our iPad users, instead of staying connected to its field. In the image below, the date selection popup is for the field labeled “Date and Time” Has anyone else experienced this? Skuid 10.0.24 iOS 11
I’m new to Skuid. I’m trying to get the sum of the project from the field Testqtrf (Testqtrf is a UI field which is %complete * Amount -incl. deliverables) of the same project and populate it into the field Current Quarter Amount in Model 2. You will notice Tullow WR 25 has two project. So the Sum of Testqtrf needs to be populated into Current Quarter Amount field. Suggestions are welcome. Model 1 Model 2
We have started the process of switching from Classic to Lightning Experience. I have come across an issue where Chatter feed on Skuid detail page is appearing in Classic and not Lightning, we are missing all new LE features. Has anyone experienced this and knows any possible solution?
I’d like to setup an automatic email that sends out Skuid pages. I already have the automatic email setup through APEX, but not sure how to get the Skuid page to display in the email. Anybody have any idea how to do this?Right now it just sends a link to the Skuid page, but it would be amazing to send the Skuid page its self.
having a new issue with URLs generated by skuid.utils.meregeAsText() that started escaping “&” differently after we upgraded to skuid v11.1.13.Prior to v11, we were able to generate URLs from this code: $&#46;each(userActions, function (i, row) {<br /> var btn = actionsModel&#46;getRowById(row&#46;Action_Button__c);<br /> if (btn) { var itemUrl = skuid&#46;utils&#46;mergeAsText('row', btn&#46;Skuid_Url__c, null, accountModel, account); if (btnEnabled) { launchItem = $(document&#46;createElement('a')) &#46;addClass('launch-item') &#46;attr('href', itemUrl) &#46;attr('target', '_blank') <i> &#46;appendTo(launchContent)</i><br /> console.log for the template in that mergeAsText function returns “/apex/skuid__ui?page=Portal&Id={{Id}}” but itemUrl returns “/apex/skuid__ui?page=Portal&amp;Id=000000000000000000”no other special characters are escaped in the URLs we are generating like this and it’s new, so
This table is in a popup from another table, in a page include (and possibly nested inside another page include), and overall is a very complex page. There is a javascript snippet rendering one of the columns in this table. There is a lot going on here, so it would be very difficult to pinpoint where the problem is originating. The use case is a list of meeting attendees where a timekeeper clicks action icons to record arrival and departure. The icon tooltips do not clear as the user moves from line to line. The records are not saved by the action nor after each row is updated. The floating table headers are seen when scrolling through the list. They often appear transiently, but also become sticky (so that a screen capture is possible). The effect worsens with a scroll wheel (which also causes scrolling of the table behind the popup when the attendees list reaches its ends). The sticky tooltips have been a nuisance since they were released (in Brooklyn?), but this situation is unacce
Client Side Model Sort is awesome! Thanks. Unfortunately it seems to work great everywhere except as a model action. I would like the model to be sorted client side every time it is requeried. If i add the model client side sort action to a model action with trigger requery, it causes Chrome to completely freeze. I have to force shut down chrome and restart. If I remove the client side checkbox, it work without error, but it doesn’t accomplish what I am looking for. Something about the client side sort is causing Chrome to freeze.Thanks!
Testing out 11.1.13 - not liking the new layout of the table header items Here’s how it looks in 11.0.8: how’s how it looks in 11.1.13: and it’s even worse if you choose Button Position: Left not sure what the intended improvement is. at least we can hide the header with a checkbox now (super cool!) but if we want to use this update we’ll need to hide all the headers and rebuild with button sets and filter sets, kinda silly.
We have several pages built in Skuid that utilize Ui-Only fields. Since upgrading to Millau (11.1.13) these picklists are all rendering blank. This is causing a lot of issues for us as we uses these on pages that get a ton of daily traffic and those fields are essential to the page.Any ideas what is causing them to load empty?Thanks,Adam
Hello folks! I need to create my own custom pagination within a Skuid page. I was wondering if there were any javascript methods I could tap into to, for example, access or change the number of records picklist (see screenshot). Another thing that would be useful is to know which page of the pagination the user is on. Cheers! Louis
This is a very strange problem that had an even stranger solution, but just in case anyone else comes across this, hopefully you don’t have to spend 10 hours on it like I did.Scenario: model on MyObject__c custom object has a condition “MyObject2__c.FormulaCheckbox__c != true”. Works fine in standard salesforce, but in a Partner Community I was getting the error “java.sql.SQLException: ORA-00936: missing expression” Could be related to this known issue: https://success.salesforce.com/issues_view?id=a1p300000008XwYAAU&title=a-soql-from-a-community-p…The error went away when I made the MyObject2__c field on the MyObject__c page layout a required field and then refreshed the fields on the MyObject__c model in the skuid page.
I’m attempting to calculate % of opps in drawer of opps. A field renderer doesn’t work because I can only run the code once the context for the table has been applied for all rows to make renderedlist complete. This snippet seemingly is good to go except the updateRow function does nothing. var params = arguments[0], OppsBySPByStageDrawerTable = skuid.$M('OppsBySPByStageDrawerTable'), models = [OppsBySPByStageDrawerTable], listSum, $ = skuid.$; // loop through all models used in drawers to update their percentOfOpps within drawer $.each(models, function(m,model){ $.each(model.registeredLists, function (l,list){ listSum = 0; $.each(list.visibleItems, function(i,item){ listSum = listSum + item.row.countId; }); $.each(list.visibleItems, function(i,item){ model.updateRow(item.row,{percentOfOpps: item.row.countId / listSum}); }); }); });
We are currently unable to create users or access Skuid settings in our salesforce org. We are receiving the below error. Could not locate metadata file: StandardEinsteinActivityCapturePsl-1.uld.xml.
Skuid 11.1.13 Themes Updated Any theme.
Hello I would like to publish an event to send data from a skuid aggregate model to a lightning component. skuid.events.publish(‘AggMessage’, JSON.stringify(payload)); AggMessage is never making it to the component listing on <aura:handler event=“skuid:event” action=“{!c.handleSkuidEvent}”/> I’m assuming this is because the publishing scope of AggMessage needs to be set to “All active pages and Lightning Components” How do I set event scope from code? Thanks, Peter
Hey team,We’re on the Skuid 11.1.13 for Salesforce and oops–some of our picklists are now broken which were working in all prior versions including 11.1.11.The issue appears to be with special characters such as an ampersand (&) being in the picklist. These are showing up blank to the users in Skuid however when they save it looks like they’re not being encoded properly so they show up as “&amp;”.Example: “Joint & Several” picklist is blank in Skuid, when saved becomes “Joint &amp; Several” in the database.Help me Skuid community, you’re my only hope! 🙂Thank you,Dan
Hello,We have a UI only fromula field that is attempting to display a date one day prior to a given date:YEAR({{Week_End__c}} - (1000246060))+‘-’+IF(LEN(MONTH({{Week_End__c}} - (1000246060)))=2,MONTH({{Week_End__c}} - (1000246060)),‘0’+MONTH({{Week_End__c}} - (1000246060)))+‘-’+IF(LEN(DAY({{Week_End__c}} - (1000246060)))=2,DAY({{Week_End__c}} - (1000246060)),‘0’+DAY({{Week_End__c}} - (10002460*60)))So when the Week_End__c is 5/11/2018, it should display 5/10/2018. This works as intended when the user’s computer is set to the EST. However, for every other US time zone it calculates for 2 previous days, so it’s showing as 5/9/2018. We have a field like this for the 6 prior days from Week_End__c, so there is an off by 1 error for all of them. Our org default is EST, so I’m assuming the discrepancy there is the problem. I’ve been playing around with those modifying values but nothing seems to be working that doesn’t throw the dates off for the other timezones as well.
We seeing another rendering problem on a complex skuid page. The Rendering problem started on Monday 5/14 on the Summer '18 Release in a Sandbox. It was rendering fine in Lightning on 5/11.The page is rendering rendering fine in preview mode from the builder but in lightning we’re seeing a javascript error from the skuid namespace.TypeError: Cannot read property ‘split’ of undefined at j (skuid__SkuidJS:24) at m (skuid__SkuidJS:24) at i (skuid__SkuidJS:24) at eval (skuid__SkuidJS:24) at l (skuid__JQueryJS:2) at Object.m (skuid__JQueryJS:2)The effect is that table header information in printed over and over on every row. Unfortunately the data is customer private so I can’t post or share a screen shot. Is this a known issue?Thanks,Peter
Hello all!Just wanted to highlight a bug in the tab component where the tabs don’t wrap correctly. It’s hard to describe so I made a video… I’ve seen this in multiple orgs but haven’t gotten round to documenting it until now.Cheers!Louis
Hello folks,One thing I’ve noticed using a public Lightning Community is that whenever you save a Skuid page and it updates the page pack static resource it overwrites the Cache Control to Private. We have to set this to ‘Public’ to get the Skuid page to load in a public Community. It’d be cool if Skuid could provide a setting to make the page pack public rather than private.Cheers!Louis
Attempting to unpack Page Assignments from our production account into one of our sandboxes for testing purposes. I had no issues unpacking the Pages, but when I unpack the Page Assignments the page just stays on “Unpacking Page Assignments in selected Static Resources…” and never changes, unpacks, or even gives an error message.I’ve gone through some old threads, but nothing has worked yet.Thank you,Adam
As per subject. I can work around this in XML, but still needs to be addressed.
Themes up to date. Skuid 11.1.11 Working styling in other themes. Investor, Slated & Lightning Design themes.
I’ve playing around with Skuid Platform today. Got it connected to my Salesforce Dev environment, and have been successfully building pages/models using SF as a Data Source. I keep randomly getting this message, which will go away, and then come back later without any changes to the Authentication and/or Data Source configurations. Authentication & Data Source configuration below:
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.