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
Just like to say that API v2 has so many great features! However I cant seem to find a way to render a lookup field as a combobox ( preferred ) or a picklist, as was available in API v1. The combobox render type was available in 12.0.1 but didnt seem to work correctly, now in 12.0.2 I cant find the option at all.This was excellent for creating a quick and clear user experience. Any ideas on how i can achieve this functionality in API v2?Thank you!
Pages I create using API v2 are not working in the community site I have set up (the site is called DAN) This url for a simple page built in API v1 works fine: https://dev-cs-portal.cs107.force.com/DAN/apex/skuid__UI?page=Hello_World_V1 This url for a simple page built in API v2 just shows a blank page: https://dev-cs-portal.cs107.force.com/DAN/apex/skuid__UI?page=Hello_World_V2 If I preview the above API v2 page the browser is directed to the following url https://smartportal–dev–skuid.cs107.visual.force.com/apex/skuid__ui?page=Hello_World_V2 and the page displays fine, but it is not inside the community site Any ideas? Is this a permissions issue of some sort?
We have two skuid pages on a custom object, and would like to clone these two pages on another custom object. We have cloned them and set these pages accordingly but unable to render these on skuid the same way we have done with the first custom object.
How do you style a responsive grid using the Design System? I can’t see responsive grid in the components list
The sticky custom header in my master page in API V2 is not working - the header still scrolls with the page
We are doing geo coding on our records by calling google api from skuid javascript snippet, we want to include api key as well in the request. function load_map_from_address(mapid, address) { // check if gps has been locally cached. geocoder = new google.maps.Geocoder(); //alert(geocoder); var geocoderAPIKey = 'geocoderAPIKey '; geocoder.geocode({ 'address': address }, function (results, status) { //alert(status); if (status == "OK") { var gps = results[0].geometry.location; create_map(gps.lat(), gps.lng(), mapid); } else { $('#' + mapid).html('address not found').show(); } }); ``` } Am looking for a way to add below script tag in the javascript snippet where we are calling geocode method and also want to access api key using custom label..
After installing Spark there is a problem with dark text in the page builder when editing API V1 pages - doesn’t affect editing V2 pagesIf I inspect an element with the dark text in Chrome to look at the computed css and click on the first computed colorand then unset this style by unticking itthe problem is resolvedLooks like an issue with the skuidtheme css - is there a way for me to fix this?
I want to dynamically add a text value in my existing picklist and save that value so that it is visible fro everyone. Can someone suggest me what should I do?I have a text field PassingValues and a picklist field Preferresd Category.The user should be able to add a new value in Picklist and the value should be saved and visible to everyone.
After upgrading to Spark calls to web services using sforce.apex.execute no longer work
Following the 12.0.2 on Salesforce update. The page cannot be previewed and results in a blank screen. Occurs when putting a Filter Set + a filter anywhere on a page. https://cl.ly/794c66a67d7aDefinitely did not occur prior to this recent update as I have v2 pages built without this issue. Currently, it is not affecting any deployed v2 pages prior to 12.0.2 using a filter set. I have not deployed anything with the current release update.Tried changing up the DSS settings/switching to a different DSS, however issue still persists. Is there a workaround for this?
I have a master page with a navigation component at the top containing lots of menu items - underneath the navigation component I have a page region. When I view a page which uses the master page and hover over the navigation component of the master page the drop-down menus are hidden by the page region, rather than appearing over the page region, and a scroll bar appears at the right hand side allowing me to scroll to the hidden menu itemsAny body have any ideas what I’m doing wrong?
I’m unable to get the UK Counties to display in the map visualization. I have: Map Group: Europe Map Type: United Kingdom A simple model with Data, Country and County fields selected on the series tab and using iso 3166 codes in the model E.g. for Kent I have: Country: GB County: GB-KEN Data: 25 Yet nothing is showing on the map. I have also tried KEN and Kent for the County code but still no joy. Does anybody have any ideas?
I have thousands of URL’s to pictures that I want to copy to “In field on record”. One picture per record. Is that possible?
I am unable to successfully test a connection to a Microsoft SQL Database on the Azure platform. The Skuid IPs have been added to the firewall, however all it returns in an error. I am trying to build out a proof of concept with the trial element, but this will be a non-started is I need to build an OData API service on top of the Azure space. We have successfully connected remotely with the Sql Server Data Tools, however there are not other fields to allow me to complete separately. Any assistance is appreciated.
I would like to log all page problem errors that happen on our Skuid pages. My original idea was to subscribe to the event of a problem occurring on the page and then create a row in a model and save it with the data. However, I’m not sure if this is an event that I can subscribe to? I didn’t see it as a listed event in the page.event api. Does anyone know how I can subscribe to problems on a page? Or a better way to log all problems that happen on Skuid pages?
I have a ton of content on about 10 different tabs and I have it set to save the models upon switching between them. However, it does it when I first land on the detail page which is not desirable. Is there any way to have it not do that? Or do I need to add a tab that doesn’t have the auto save on it that is displayed first?
I have a list of strings, where some of them are children of some other rows in the list (lookup relationship). I wanted to show them in hierarchy along with checkbox on each item, where parents as table rows and children as drawer in each row, then added mass action on the table, which solved the purpose. However, if no parent is selected and only the child is selected, the save button does not come and in that scenario I want to auto-select or check the corresponding parent, which I am not being able to do. The JS code loks like - var selectedList1 = skuid.$(‘#assignReasonTable’).data(‘object’).list.getSelectedItems(); debugger; var selectedList3= ; var descriptionList = ; var selectedList2= skuid.$(‘#assignReasonTable’).data(‘object’).list.getSelectedItems();//[0].childComponents[0].list.getSelectedItems() selectedList2.forEach(function(entry){ selectedList3.push(entry.drawers[0].childComponents[0].list.getSelectedItems()); }); selectedList1.forEach(function(item){ descriptionL
I am working on some new picklist values for a field in our sandbox. Suddenly changes to picklist values are not displayed in SKUID, but are displayed in native UI. I’ve tried editing the Skuid page and saving. These are not dependant picklists and the values are assigned to the record type.
Hi everyone, I have been trying to get some javascript to grab the gps geolocation of the user when a js snippet is run and add this to a couple of fields (longitude / latitude ). My issue is saving the var to the fields - This is my js ( I think this works ok)… navigator.geolocation.getCurrentPosition(function(position) {&nbsp;&nbsp;<br>&nbsp; var gps = (position.coords.latitude+position.coords.longitude);&nbsp;&nbsp;<br>&nbsp; window.GlobalVar = gps; &nbsp; continueSomeProcess();<br>}); Does anyone have any ideas how to get this to work?
Getting all kinds of new errors using IE11 after the Spark update. I’ve had similar issues in the past, going to try working with non-child pages and checking my code for .endsWith or .includes
I’d like to replicate the behavior from a custom button built for us by a consultancy in the classic interface, into a new Skuid page built by me. My understanding is that it’s not possible to call a custom button from Skuid, or at least it doesn’t appear as an option under the “Run Salesforce Action”, which is a shame, as I don’t have the best understanding of what the button does. Currently the custom button calls a visualforce page (see screenshot) It calls this visualforce page Which calls this apex class: public with sharing class MergerOverrideExtension { public Merger\_\_c controllerMerger { get; set; } public MergerServices mergerService; private CDFIntegration cdfIntegration; private MergingAccountService mergerAccountService; public MergerOverrideExtension(ApexPages.StandardController controller) { this(controller, new CDFIntegration()); } @TestVisible private MergerOverrideExtension(ApexPages.StandardController controller, CDFIntegration cdfIntegra
I’m trying to get my Skuid Page that is public facing to show up in a good format when sharing links to apps like WhatsApp and Facebook Messager. To do so, I need to add meta data with tags from this website http://ogp.me/ However, I can’t seem to find a way to access the element directly and trying to add it with a query snippet $(‘head’).append(html code) doesn’t seem to work either. I’m guess it’s because the jquery isn’t ran when a link is shared. Is there a way to access a Skuid pages head element directly? thank you!
Is there a way to code a button so that when pushed the value of one field from a model is copied to the clipboard?
I have a Skuid page I am using with Salesforce where I’m doing a csv file upload then comparing Opportunities and updating fields on the Opportunity (i.e. dates, stage, etc). The file has grown and now I am getting the error: “Maximum view state size limit (135KB) exceeded. Actual view state size for this page was 157.109KB” when try to upload a document. There is a writeup on what needs to be done to fix it but I believe this is something Skuid would need to do on the platform (https://salesforce.stackexchange.com/questions/53112/maximum-view-state-size-limit-135kb-exceeded)Has anyone come across this and/or is there a fix that’s known to resolve this issue?Thank you!
The docs suggest the labels for feedback can be edited from Salesforce: Using Custom Labels with Skuid on Salesforce If you’re using Skuid on Salesforce, it’s possible to customize the content of the Feedback form (including headings, labels, and picklists) using the Salesforce Custom Label feature in Skuid. Feedback form labels are titled “Global_Feedback_[label name].”However, Saleforce indicates that these Custom Labels are managed and I'm unable to edit the values. Is there something I'm missing or another way to accomplish this?
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.