Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi everyone, I have made a custom skuid page and have a client who would like to surface the lightning experience page inside an iframe or something like this. I am aware of clickjack and Locker Service making this a challenge but I wanted to know if there was another way?Many thanks, Matt
Hello!I have two fields on my opportunity that relate to who made a sale “Opportunity Owner” and “Enroller” ; the Enroller field is always the more true of the two fields though isn’t always filled out so when I create a skuid report i want to be able to sayif enroller is blank use Opportunity owner otherwise use Enrollerthis would be simple in Excel or using SQL though I am finding it difficult to do in skuidMaybe I need to add a custom field on the opportunity - Thoughts?
Double clicking anywhere in table is the only thing that seems to fix the floating header.
As per subject.I’m using a page load action sequence to set all rows to false to resolve the issue in the meantime. Not sure why my page load action sequence allows me to do this when the Before Loan Actions for my drawer doesn’t.I even tried setting the “Rows to Use” to “All Rows in Model” and the field doesn’t update.
Here’s a sample page to demonstrate. Click Tab 1 Click Tab 2 Expected behaviour: Message “Sub Tab 1.2” Actual behaviour: no message. <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models/> <components> <tabset rememberlastusertab="false" defertabrendering="true" uniqueid="sk-2nDz-521"> <tabs> <tab name="Tab 1"> <components> <tabset rememberlastusertab="false" defertabrendering="true" uniqueid="sk-2nDz-212"> <tabs> <tab name="Sub Tab 1.1"> <components/> <oninitialshowactions/> <onshowactions> <action type="blockUI" timeout="1500" message="Sub Tab 1.2"/> </onshowactions> </tab> <tab name="Sub Tab 1.2" loadlazypanels="true"> <components/> <oninitialshowactions/> <onshowactions> <action type="blockUI" message="Sub Tab 1.2" timeout="1500"/> </onshowactions> </tab> </tabs
HelloIs there a way to modify the order of fields that are selected when a user presses “tab” on their keyboard? We have a few pages where users need to enter some data on longer forms and it would be easier for them to just tab through all of the fields, and we would like to control the order of where they go tabbing through the formI saw a post on this subject from a few years ago, but there wasn’t much activity on it. Does anyone know if there is an easy way to do this?Thanks!
I want to replicate/improve the salesforce classic collapsible side bar in my skuid pages. Has anyone developed such a thing? If not collapsible, is it possible to wrap text in columns? Forcing them to be a certain width, regardless of the character length. Below is a screenshot of “Recent Items” on the left, with the main home page next to it. I want to be able to display the home page on more than 60% of the page, ideally the recent items would only take up 20% thought this isn’t working as i’d like right now. Any thoughts?
I am trying to create a UI-only URL formula field in SKUID but I am not having any luck. I am not sure which option to choose in the UI-only settings.
I have tried what feels like endless variations of this snippet, but for some reason I can’t get this snippet to update my rows correctly. I have commented out each line so as to hopefully describe exactly what I’m doing:Thanks in advance for any/all help, and please pardon any obvious oversights…still learning. var params = arguments[0];<br>var step = params.step; var $ = skuid.$; var models = skuid.model.map(); // Model of Goals to be updated var newGoals = models.Goals_Placeholder; // Context model which will be used to query and store the Template Goal // that matches each goal in my newGoals model during iteration var matchingTemplateGoal = models.ContextGoal; // For each New Goal, query it's matching Template Goal and // update the value of the Template_Goal__c lookup with the Id of the matching Template Goal $.each(newGoals.data,function(){ // Get reference to filterable condition on Context Goal model var contextgoalNameCondition = matchingTemplateGoal.getConditionByName(
Hi All, I’m trying to use Model Lookup function and I have some problems. Maybe you’ll be able to help me. Long story short:a) I have model called Sales Plan (object is Sales Plan also) which is aggregate and grouped by Year&Quarter field + Account field (normally in this object I have 4 records for each year, so I can go with the basic); the object Sales Plan is used to store target for every account / quarter of year; b) I have object model called Contracts (object is Contract also) that is aggregate and grouped by Year&Quarter field + Account field (normally in this object I have hundred records for each year / account). The goal is to show table that will have data:Year&Quarter | Account | Target | Completionwhichever way I used I’m having duplicated values. The problem is with 2 groups I’m using in the second model i.e. account and year&quarter. Example set-up: 1. Model = “Contracts”, aggregated, aggregation “salesresult”, groups “year_quarter”, “account”. 2. Model
Hi team,I’ve used the demo on our NFP Salesforce instance, and have attempted to contact your team twice now about signing up. NO one has reached out to me. We would like to sign up for skuid and begin using it everyday but I am still yet to have anyone respond to me, contact me, send me an invoice. Nothing. Please respond as soon as you can.
SQLException in (skuid) error when previewing a page.Production environment functions correctly. I copied the XML to a sandbox and cannot preview the page. Receiving the above error. I’ve never seen this error before. Thoughts?Other pages function fine. But this exact replica from our PROD instance isn’t.
A row action on a table is made conditional with a rendering rule. The action itself changes the value used by the rendering rule, so the action essentially turns itself off. The problem is the tooltip generated for the icon. The tooltip does not clear when the rendering rule suppresses the row action. Here is a sample table: I do not know if this behavior changed with version 11.1.10, but it does not seem like expected behavior. My opinion is that the sticky tooltips is an unexpected behavior, even if intended by design. A tooltip is a help to aid the user in deciding whether or not to click the item, not a record of it having been clicked. Here is the sample page: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="Users" query="true" createrowifnonefound="false" sobject="User" orderby="Name" datasource="salesforce"> <fields> <field id="NewField" uionly="true" displaytype="TEXT" label
This is the JavaScript I’m using to apply the background color for the column Direct Competition. My problem is when the cell is empty the height of background color reduces as seen on the screenshot. Is there a way to define the height and length in the absence of a data in the cell. JavaScript: var $ = skuid.$; var field = arguments[0]; var value = arguments[1]; var row = field.row; switch (field.mode) { case ‘edit’: skuid.ui.fieldRenderers[field.metadata.displaytype].edit(field, value); break; case ‘read’: case ‘readonly’: var cellElem = field.element; cellElem.css(‘background-color’, function () { var bgValue = null; if (value) { bgValue = ‘#FF4500’; } else { bgValue = ‘#78a22f’; } return bgValue; }); skuid.ui.fieldRenderers[field.metadata.displaytype].read(field, value); Circled in red where the issue is.
Hey team!First project in a while so I might just be a bit rusty. Crawled the forums for this without success:1) I am using a calendar for a booking system and would like to “block out” times during the day (every day form 10am to 11.30am and from 1pm to 3pm). I was hoping to be able to achieve this with “valid date range” and a UI only model and fields, however it doesn’t let me define time only. My best workaround would be to dataload fake appointment records of a new type “blocktime”, inserting it as a separate event source and displaying it in a different colour. My ideal scenario however involves validation rules so that if a user attempts to manually set an appointment time in the “break”, it prevents it from creation. Or something fancy like a UI model that on the fly creates temporary UI only records (2 for each day that is displayed for their corresponding break times) but my coding skills are far too weak for this :-/Any thoughts? Appreciate any pointers in the right directio
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.
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.