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
I’m trying to upgrade my skuid version on one of our sandboxes in salesforce, but I’m running into this: Package: Skuid (04t4A000000YWvf) Error Number: 1145989358-143160 (-391849440) Problem: (Skuid_Page_Viewer) The user license doesn’t allow Object Permissions Skuid_Page_Viewer: The user license doesn’t allow Object PermissionsI’ve already checked Sharing Settings, and the permission set, but I’m not sure where else to look.Has anyone else run into this error, or would have an lead on where to check?
Hi, I tried following this guide and applying it to my situation but I get stuck when trying to update the value. https://docs.skuid.com/v10.0.4/en/skuid/javascript/snippets/table-custom-field.html I’ve running a custom field Renderer on the Quantity field and it shows the field correctly, but I can’t get it to update the field with a number instead of a true or false. Where do I put the js function that updates the model? I know I need to use this code, but how do I format the function around the event of clicking the checkbox? field.model.updateRow( field.row, field.id, ); This is the code I currently have var field = arguments[0], value = arguments[1], $ = skuid.$; function updateField() { field.model.updateRow(field.row, field.id, 1); console.log('function working'); } switch (field.row.Name) { case 'GoPro rental (per day)': skuid.ui.fieldRenderers.BOOLEAN.edit( field, value ); break; case 'Private guide (per day)': skuid.ui.fieldRenderers.BOOLEAN.edit( field, value ); break; cas
Using skuid 11.2.9, I have suddenly encountered a Model where its data displays in a Table component but not in a Page Title or Field Editor. This is development code (a new page, never been in production, saves occurring every few minutes). The problem was noted on a Page Title with a rendering rule based on a field in the Model, but to research the cause, I created a new Popup, pulled in a Table component on the Model, and selected the 8 fields it contains. I did the same thing with a Field Editor. I also formatted a representative field in a Page Title. No rendering rules are used on the test Popup.The odd thing about the Field Editor is that not only do no fields display when previewed, but not even the default “Section A” and “Section B” headers appear - only the grayed-out, default “Save” and “Cancel” buttons.What could possibly cause this?And, for what it’s worth, the actions leading up to an including the broken and the test Popups are in a repeatable Action Sequence. [Edit:] H
I have an issue trying to get the value of a field in a parent object in javascript. e.g. Getting the Industry of an Account from a Contact record. I’m currently using skuid.model.getModel(modelName).getFirstRow()[xmlDef.attr(‘tst’)]; Where ‘modelName’ is the model and ‘tst’ is the field chosen in the properties(Account__r.Industry). I have verified that the field is included in the model.I am able to get around if by creating a UI-only formula field that references the desired field. I am able to get it to return the value if I do the following skuid.model.getModel(modelName).getFirstRow().Account__r.Industry; Has anyone else encountered this same issue? Or am I using the incorrect method to get the value?
Does anyone have any tips on using a date filter on the Outlook Calendar object? The filter works with the configuration below, but when I clear the filter from the table I get an “Filter could not be applied. [object Object]” error because the outlook calendar object requires a value. Is it possible to just revert to the original filter parameters when cleared? Setup: Working: Error: When I clear the filters and press apply the page errors out
I have 100 line items I am performing mass actions in a table. When I select more than 10 items I get a SOQL error because it says I am over 100 SOQL queries. Is there any way a mass action can run and the jobs are run as 100 separate executions instead of 1?
I see everywhere references to “Font Awesome 4” but not the specific version, and upon trying to using this hourglass icon in a template nothing loads:https://fontawesome.com/v4.7.0/icon/hourglass-halfYou can see on this page, FA mentions it being added in 4.4, and the latest version is 4.7.How can I see what version Skuid is using, and are there any plans to increase the version to the latest?Thanks!
If a user has an intermittent connection or spotty service, I want to let the user know that they’re disconnected so that they don’t accidentally lose their work. Specifically, I’d like to disable the save button and give them a notification, on top of what Salesforce already gives me. What options does Skuid give me?
Hi, I can’t get the partner url in my sandbox. I’ve tried merge syntax: '&serverUrl={{$Api.Partner_Server_Url}}'and populates an empty string and Javascript : '&serverUrl='+sforce.connection.partnerServerUrl and populates "undefined" I'm using skuid for salesforce 11.0.5 In production I have the same version and it works.
I’m having issues with the image component on Skuid Platform. I can get images to show in a table so I know that the data is pointing to the right source, but when trying to reference the same image through the image component, nothing shows. The attribute says "src(unkown) in the inspector. Also trying to use an HTML image tag in a template fails to show as well. If I use a static reference in the image or template components, it works as it should.
Has anyone seen something like an auto address code, works with google, that would like the following?https://form.jotform.com/Barkley/paypal-payment-test
I’m trying to use the new MySQL connector but am struggling to get it to work. For the URL endpoint I put 173.236.29.190:3306, then the database, user and password. I know the IP and port work as I have successfully connected to the database using Skyvia and that access. I have set up your IP addresses on the whitelist in the Remote mySQL application in cPanel. When I enter the information in the connector and press on the “Test Connection” button, the system waits about 5 seconds then gives me no response, not “connection failed” or “connection succeeded” response. When I press on Save Connection, the system grays the screen and gives a message that it is saving the connection, but then nothing happens. It stays gray forever. When I click on the back button, it warns that nothing is saved and I might lose my information … and sure enough, nothing is saved. I realize this connector is relatively new, but if you could build documentation for how to use connectors, it would be greatly a
I have created a MySql database in Amazon RDS. While trying to create a Data source configuration in Skuid, I am getting the following error - Unsuccessful. Skuid could not connect to the Data Source. Please check all configuration values and make sure the Data Source can be accessed from Skuid’s web servers in your region. error I have already white listed the Skuid IP addresses in security group.
I am trying to change the date format of a model field on snippet to MMDDYYYY. Is there a formating method allows me to do like this.
I have a custom object called “mobilizations” which are deployments to job sites. On a page with a calendar we display these as events. Our goal is to display a card for each event showing the information about each mobilization in rows beneath the calendar. We want a row for each day in the calendar included the view. This works for the day view but for the week all the card showing without a grouping or separation. The attached screenshot shows what we have this far. The question is how to group the displayed cards by calendar day? Week View Day View Month View
Hello I am trying to set up an external data source from Pardot using the REST Api. For every request, Pardot’s REST service requires a user key that will be hard coded on a user’s record and an API key that comes as a response to a successful authorization. Both are supposed to be in the header of a GET request. I was able to set up the authorization part of the data source correctly. When I inspect the model I have on a test page it’s showing the authorization request configured correctly and it’s returning a valid API key. When I look at the responseBody section the field is showing as api_key. I’m getting an issue when I try using the authorization merge variable in the common request header. Per the skuid documentation I believe the merge variable should look like this: {{$Auth.Response.Body.api_key}}. However, when I inspect the request on my test page, it’s just showing that merge template and not the actual API key that was returned. When I hardcode an API key I get from doing
We have 2 different companies using the same Salesforce and separate the data via hierarchies. We have several pages that both companies use on similar objects. However, company A likes things a bit different than company B. Specifically how things are sorted on page load…It’s a small problem, but I’d like to be able to change the sort from ASC to DESC based on the User Profile that is viewing the page. And possible change the fields that a model is sorted by.How could I make this happen?Thank you
We’ve a table filter which is not working as you scroll the records down in a list view. Initially it’s hiding as per the column rendering then later showing up the hidden column which is taking out the column data to show inappropriate.
I have a Page Include for a new Record create from a popup on a page. This works fine on the desktop and shows on mobile within salesforce one correctly. The problem is that we are unable to scroll down on the screen to access the rest of the fields. The popup does not allow any scrolling and I can only move down to the next fields by using the next arrows on the iphone keyboard/picker to advance. Any ideas what could be causing this? I tried to add a responsive grid as well but no luck.
I have a question regarding [CORE-1715]. I currently have a chart that shows Cases created by hour of the day (based on CreatedDate). I assume this change means that my chart will always show in UTC now instead of local time.Is this true?If so, how would I convert my chart to different time zones for different users?
Is it possible to insert Custom Lightning Component in Skuid Page?I have found similar questions but there is no exact answer…
Upgraded to 11.2.10 and now textareas in tables no longer allow me to auto expand by not having a number in the Rows to Display field.Update, I found this post from another user (https://community.skuid.com/t/blank-not-accepted-in-rows-to-display) but going into the xml and removing the displayrows attribute from the field does not solve the problem for me. I recreated the problem on a brand new page without any css or jasvascript.
Is there any way to replace field label to dynamic label while exporting. For Example, var modelE = skuid.model.getModel(‘Event’); Model.exportData({ fileName: ’ Report-’ +rowE.Name, doNotAppendRowIdColumn: true, fields: [ model.getField(‘Account__r.Name’), ] }); In above case, how do we replace the label with dynamic label to " Company Name" in header while exporting ?
I learned from this post how to populate a text field with a drop-down control using a custom field renderer, and I’ve had nearly 100% success. My only problem is this: the fields we are now populating with the drop-down control contain some invalid values. Where this is the case, the existing value from the record being edited appears in the drop-down control along with the valid values we populate into the drop-down. I would like to exclude the existing value from the drop-down control in all cases and allow our users to select only values that we determine to be valid. Can I do that?
Hi everyone, I have a LEX page with a tabs component. On one of the tabs, I have a Skuid component showing a Skuid page with a list of related objects. Clicking an element in the list goes to the native LEX detail page for that object. Edit the object and save, all well and good. Now click the browser Back button. The Skuid component in the page has not refreshed the model so it’s showing the pre-edited data. I need to get Skuid to refresh the model, but I can’t find anything to hook. If I refresh the whole page, obviously, the updated data shows. This is in Chrome or Firefox. Salesforce session settings are set to not enable browser caching. In Chrome I have dev tools open with cache disabled. I have a custom LEX component that we wrote on the page listening for an onRender event and console logging; it logs on page load but but not when returning via the Back button. Basically it looks like Chrome just instantly throws up the previous rendering of the page which, honestly, is what I
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.