Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
I see the following output when pushing pages with Skuid CLISkuid CLI Output:Pushing 44 pages. Pages successfully pushed to org: .Is anyone else having this issue? I am using a custom domain and am able to pull pages using Skuid CLI.
On my page I have a Field Editor. That field editor sits in a wrapper. The Wrapper is within tab set. The field editor here points to a unique model (call it model U) that is only used for that field editor. That model is not loaded upon page load. The model is restricted to 1 record. On the tab I have these whenever rendered actions: Remove all rows from the other model on the page (model A) and from model U. Query model B (that is used in a separate read only field editor) Create a new row in model U. Problem is if the user has queried and added a record form model A. Then when they go to the tab that creates the row in model U, the field editor that the user is going to use to select values for model U, appears twice. See attached. Very frustrating. No reason this should be happening in my view.
Hi guys,I use this JS to display a slider, All works well except 1 item which I cannot figure and maybe one of you can help hopefullyOn line 10 this is the default value shows when I first display this field. In my case this is a UI field so the default value is null so the JS fetches the info from a field on row: Lowest_Cost_of_Funds__cthe problem is that it does not show decimals for some reason only the whole number. The moment I touch the slider the proper value will appear (line 22-29 has something added to show # of decimals I want)How can I do the same for Line 10 to show 3 decimals, as the number it is supposed to show is example 1.149 but it only shows 1 Hope it’s clear enoughvar params = arguments[0], $ = skuid.$; var field = arguments[0], value = arguments[1], $ = skuid.$; if (field.mode == ‘read’) { skuid.ui.fieldRenderers.DOUBLE.read(field,value); } else if (field.mode == ‘edit’) { var amt = $(‘’) .text(skuid.ui.renderers.DOUBLE.read({ value: value || field.row.Lowest_Cost
Pages that worked perfect before Winter '20 now do not seem to be able to see the param(id) for related lists. I rebuilt the page and I got it to work, but now in Lightning, I have a simple skuid page for the Contact record, underneath a highlights panel and a side panel and there are two different contact records between them. I’m just learning lightning, so maybe that is the issue, but if anyone is available to give me a quick demo on lightning and skuid, I would appreciate it.Also, I have had to remove ALL javascript from the page, even after generating the page support files, it cannot handle javascript. Much of my javascript can be converted to action sequences, but the only way I can get those to work is in a new tab. For example, “send email” (we have our own send email that does special things), Action Sequence = go to url, which opens in a new tab. I cannot get it to open a popup and then display the go to page, because of course that doesn’t work. @patvachon can you help
Hi Team, I am using version 11.2.8. I am trying to connect to an external rest endpoint using rest data source. For now the external endpoints are simple GET and POST, which do not expect any request body or query param. Both the endpoint return a simple json in response. When I try to use method as Query, both http verbs GET and POST work fine. However I am struggling to send the payload with the Query method and the POST verb. Moreover, When I try to use method as Update or Insert, external endpoint is itself not getting invoked. I am not seeing any errors on browser console and even network tab shows no call made to the endpoint. I tried this with Proxy active and Inactive both. Even arguments[0].changes returns me undefined. My requirement is pretty straight forward, I want to post the customised payload to an external web service on the changed items inside the model. I am stuck here, can you please help.
I’ve got a filter set with a single toggle, and just as a test I’ve been trying to get the toggle when activated, to only show contacts on the table below it with the first name of “Aaron”. I realize that may be pointless, but I’m just trying to make sure I can get the syntax down, then turn to real-world business needs.I’ve got a condition on the model that looks at the name field, if it starts with Aaron, and the state is filterable default off. The toggle itself is set for ‘conditions to toggle’ with the one and only condition on that model, ‘onlyAarons’. When the toggle gets toggled, nothing happens. The screen flashes somewhat, indicating its trying to toggle, but none of the data changes.
Hi guys looking at this blog from Skuid, and wondering how they achieved this: “Here, we’re combining the Skuid Navigation component and the Skuid Filterset component to achieve the Quick/Advanced Filters” In Section 3 https://www.skuid.com/blog/how-to-build-the-perfect-case-management-workflow/Any ideas?Thx
We are working on rebuilding our first Skuid page on api v2 and running into a annoying problem.When the page loads, the focus goes to the first input field of the table which is at the bottom of the page. I’ve tried using inline snippets to change the focus to the first field on the page, but it doesn’t seem to work. It works for a split second and then the focus goes to the Table at the bottom of the page.We have a few ways to workaround this by not creating a row in the table until a field is reached in the form above, but this is not a sustainable fix. How can we make sure the focus goes to the first input field on the page?Thank you,Sam
I’m trying create a Skuid page that interacts with a standard lightning component named Path. It’s an Opportunity page and I want the user to be able to update the stage. When either the Path or Skuid page is updated, I want the component which hasn’t been directly updated to update, so that both components are in sync. From reading this link https://community.skuid.com/t/lightning-skuid-page-edit-but-parent-doesnt-update I was under the impression I should be able to add an action named “Publish Event” to my Save button, with the event name force:refreshView essentially triggering the sync of both my components on the page, without having to do a whole page refresh, which would slow the page down massively. When Iook at the options in the “Event Name” drop down, I do not see “force:refreshView”. Instead I see the options below. Can someone help me on this please?
Hi all, We have integrated our google calendar into skuid, and display the events for the current week on a page. From this data, we want to save a salesforce event record for each calendar entry. For events created in google that don’t have a time added (so they are all day events), the actions we have running on the page to create this record works to pull the date, time, subject and then saves the record. If the event on google calendar has had a time added (no matter how short/long), the actions on the page creating a new row does not work. Instead of automatically saving as the all day event record does, the timed event doesn’t save, and when I manually click save (standard save button on the table) it just says “Saving…” with no error message on the skuid page. On the console I get this error: Visualforce Remoting Exception: Invalid integer: 00+11 f error @ VFRemote.js:117Any help or suggestions would be greatly appreciated. Thanks
My organization requires its grantee organizations to submit a complete list of their staff to us once a year via a Skuid page. The staff records are held in the Contact object in Salesforce. On submission, the information provided on the form is copied into a Staff Snapshot custom object for archival purposes. For our largest grantees (with ~500 staff), the page throws an error on submission. Skuid simply displays “There was an error” briefly. The browser console shows the message “Visualforce Remoting Exception: Apex CPU time limit exceeded [object Object]”. The Submit button on the Skuid page sets three fields in a record from a model and saves the record. This save triggers a Salesforce Flow which writes the Staff Snapshot records. If I recreate this exact set of steps through the user interface, no error is thrown. Is there anything I can do in Skuid to avoid this problem?
Hi - none of our pages are loading. Here’s the error I get: An error occurred while attempting to load the “skuidcore” Component Pack. There may be an issue with the name or location of your Component Pack manifest files. Error: Unable to retrieve content of file I just updated to Millau (11.2.27). Help! I’m supposed to be on maternity leave but no one can get any work done without skuid.
I have a Deck showing various Opportunities.I have under this deck a Table that uses the Opportunity ID of the current deck context row to show Activities related to that Opportunity (WhatID on Activity).I want to be able to create a new Activity and use the OpportunityID (current deck context) as the WhatID when creating the new Activity. Is this possible? I don’t see how to go about finding the current deck card’s fields (the Id field specifically) to refer to when creating a new Activity row.Thanks!
We have update skuid from version 10 to 12.2.8 in salesforce and it showed error" Theme could not be found. Test Defaulting to Classic." but I am working on the classic theme only and if I change the skuid theme then also it showing the same error.
When trying to access the backend of all my pages in production I get the following issue. I am also getting the following error “There was an error trying to load the Chatter Feed for this record: java.net.SocketException: Connection reset.” Has anyone else experienced this issue?
Is it possible to access AWS private buckets via Skuid on Salesforce? Currently our AWS buckets are public but want to change them to private.Has anyone successfully done this and is there any documentation if it is possible?Thank you.
I need js snippet which will be triggered in stead of single click in deck component. i tried following snippet but no luck. i changed the id to StickPostDeck, try { if (skuid.$(‘#StickPostDeck’)) { skuid.$(‘#StickPostDeck’).dblclick(function(){ console.log(‘double clicked’); }); } } catch (error) { }
A SKUID page that I am using currently has been throwing “Apex Heap Size too Large” repeatedly. I made some temporary fixes to avoid the issue: deleted a few unwanted models and fields. Also checked the “Max # of records (Limit)” for the models, and set the values as per my requirement. The “Query on Page Load” option is checked only for required models. But, the heap size is still large enough to throw the error if number of data records increase slightly. I wished to know if there was a way to avoid the issue permanently. For instance, I have a few models which are used only in conditions of other models. As shown in the screenshot, the “BoxFieldsModel” is queried only to be used as conditions in another model(2nd screenshot). Is there any better way to perform this task, other than querying a separate model? Currently I am trying to search for other options to avoid the heap size error. Any input for the same will be helpful. Thanks, Sejal.
HelloI have a model on the Account object that is trying to pull in two fields that lookup to the Contact object. On one sanbox, when the model is queried it pulls in the data just fine with no errors. In another sandbox, where the pages and permissions are identical, I am getting errors on the model saying that these two fields do not exist.I verified that the fields do exist and that the profile, record type, etc all have access to them. This also a sudden issue. This morning when I ran through the page there no issue, but now there is. I can’t explain what changed there or why, or why it only happend in one sandbox and not the other.Anyone have any idea why this would happen? Why would skuid say that a field sdoesn’t exist when it very clearly does exist?Thanks!
Our invoices are created as visual force pages that we print via a Skuid button. A new requirement has come up to print all invoices for a client as individual pdf’s in a batch. We currently use conga to achieve this but want to move away from it. I have done some research and attempted a couple of times to build a blob controller but never was successful. Has anyone ever done anything like this within Skuid? Here is some reference info: https://salesforce.stackexchange.com/questions/255399/batch-print-visual-force-in-a-pdf
I have been editing a skuid page today and all was going well until I got this error on preview: There was a problem initializing a component of type skuid__labelInput: Invalid XML: I searched the community and google and am not finding anything with the term “skuid__labelInput”I also reviewed the XML editor and it does not have the normal red Error message in the upper right to indicate that the XML is invalid. There are also no lines in the XML with the Red square with the X at the beginning of the line to indicate where the issue is. Does anyone have any suggestions on how to troubleshoot the issue? (Other than restoring an earlier version where it wasn’t occurring.)
I occasionally have to troubleshoot and/or fix an issue with my skuid pages by restoring a previous version.Is there a way to preview a revision without restoring the version? It is very time consuming and confusing trying to find the right version to restore to, especially if you save frequently, or are trying to find the break point of an issue.) I am currently on the latest version of spark version 12.2.8.
Hey everyone,We’re using a Tabset inside a Wizard. The issue is as follows:Let’s say we have 3 steps in the wizard. Step 2 contains a Tabset with the Tabs “TAB1” and “TAB2”.As you know you can go back to revisit a wizard step. Every time we revisit the second wizard step the tab label is concatenated. So it works like this:First visit, the tab names are:TAB1 and TAB2Second visit:TAB1TAB1 and TAB2TAB2Third visit:TAB1TAB1TAB1 and TAB2TAB2TAB2and so on…here’s a simple test page:<skuid__page unsavedchangeswarning=“yes” personalizationmode=“server” showsidebar=“true” showheader=“true”><skuid__wizard uniqueid=“sk-3MC_-1192”><skuid__tabSet uniqueid=“sk-3MD0-1649”><skuid__tabPanel name=“TabName”></skuid__tabPanel></skuid__tabSet></skuid__wizard></skuid__page> Any ideas for a JS script or something to fix this?Thanks
Hello, I’m trying to use the new DATE_ADD function that is listed in the 12.2.8 Spark Notes. I just upgraded our sf production environment to this update. I don’t see the function listed in the formula functions, so I’m not sure it’s even there. But, I also tried to use it manually and nothing is happening. I’m using API v1. Here’s excerpt from Release Notes and then my code. CORE-2365New formula functions: DATE_ADD and DATE_DIFFWorking with dates can be a complicated process, so we’ve added two new functions to simplify things:DATE_ADD is used to take a source date, add a specified amount of time to it, and return a new date. For example, you could add fifteen minutes, two weeks, five months, and so on.DATE_ADD( {{MyDate}}, 1, WEEK )You can even subtract time from a date by using a negative integer with the formula.DATE_DIFF is used to calculate the difference between two dates. You can find out how many minutes, weeks, months, and so on between two dates—whether a specific date or t
Pretty sure this error just came in, it for sure wasn’t an issue in 12.1.7 and was reported after upgrading to 12.2.8 If you have two field editors under another field editor, and you have the same display logic set to show them after a certain other field is filled out, when they display they both display in the same space, as opposed to on top of each other like they’re supposed to. Here’s what it looks like when section “Assistant Phone” and “Contact Description” both render when Assistant Name is not blank, right after filling out Assistant Name: And here’s what it’s supposed to look like, and what it does look like after saving and refreshing: here’s my sample page xml: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"> <models> <model id="Contact" limit="1" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Contact"> <fields> <field id="RecordTypeId"/> <field id="Assist
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.