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
Have a Box Source setup to read files from a folder but can’t upload a file. Getting this error. {“type”:“error”,“status”:403,“code”:“cors_origin_not_whitelisted”,“context_info”:{“origin”:“https://skuid.na74.visual.force.com”},“help_url”:“http://developers.box.com/docs/#errors",“message”:"Access denied - Did you forget to whitelist your origin in the CORS config of your app?”,“request_id”:“fg05e1fx6scsld0s”} The documentation call to setup CORS with the following template url:http://[your_Salesforce_org].[Salesforce_region].visual.force.com What is [your_Salesforce_org] and [Salesforce_region]?
We need to create a url in our managed app (so the mydomain will vary each time) and I thought one slution would be with a UI formula field and using merge syntax eg {{$Site.CurrentSiteUrl}}&“/apex/etc”Sounds good… but it is blank.Has anyone got any clues for us?Any help would be appreciated
Many of us have probably run into a scenario where you need to load all records for a model, and have used the good ol’ loadAllRemainingRecords js. Now there’s a declarative way to load all remaining records as well. There’s two parts to the solution A model condition that only pulls in new values (Id not in (ThisModel)(Id) An action sequence that loops and merge queries until ThisModel can't retrieve more rows Here's the XML for an example that'll load all accounts in your org <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models> <model id="Accounts" limit="5" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Account"> <fields> <field id="Id"/> <field id="Name"/> <field id="OwnerId"/> <field id="Owner.Name"/> </fields>
I have the following:How do I create a page with a table that has the “View_Member__c” field from Member_DNA__c object, the “View Closed CR__c field” from Contact_Record__c object from a certain user identified as “Completed_By_User__c” field in the CR_User_DNA__c object?
I have a table and have column that I would like to identify duplicate numbers. In excel I can use an “if” statement to compare the 2 fields in adjacent rows. Is there a method to do that in Skuid table?
I use the Queue Component in a Panel Set Component, the Queue was on the left to load a record into the right. Knowing that panel sets are deprecated what is the best practice when using Responsive Grids to accomplish a similar behavior? The issue I am running into is on wider tables the detail page is responsively dropping below the queue. This makes it look like the page is unresponsive when clicking on the queue because it is halfway down the page. I have played with Fixed width Responsive Grids set to 1000px which works great on small laptops but on large screens where they have more room it makes it look squished.Should I just go back to Panel Sets or is there a way achieve a similar result with Responsive Grids?Thank you!
In v11.2.11 I have rendering rules on Page Titles on a popup. The rules do not match the data in the models being used. The action steps leading up to the popup change and save the data in the model, and the appearance is that the rules process before the save completes.
I am trying to change the background color of a table’s cell based on the value. I am able to do this easily with a custom field renderer and a snippet using the following code. However, this changes the div inside the cell and I’d like to change the whole cell color. var field = arguments[0], value = arguments[1], $ = skuid.$; console.log(field.element.parent()); console.log(value); if (value >= 500) { field.element.css(‘background-color’, ‘red’); field.element.css(‘color’, ‘white’); field.element.text(value); } else if (value < 500) { field.element.css(‘background-color’, ‘green’); field.element.css(‘color’,‘white’); field.element.text(value); } This works OK, but I’d like to change the whole cell’s background color and not just the text div. However, when I try “field.element.parent()” or “$(field.element.parent()” or “field.element[0].parentElement”, etc… I can’t select the parent element. How can I select the parent of the parent element that the field renderer snippet send
I have a UI only text field that I would like to set to the salesforce current user. Is it possible?
Hi, Not a new question, and through the years became quite proficient at finding cause/fixing heap issues… But this one boggles my mind. Everyone can see a specific skuid page no problem… except 1 user which had the same profile (admin) and role and access to fields… than other people that can see page properly and this 1 person gets consistently Apex heap size too large: 11736765 on the same records anyone else can see perfectly fine.Any ideas?I’m been trying to fix this for past 2 hours and nothing i tried worked.Thx
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
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.