Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
After the Brooklyn update, lookup fields aren’t returning results when the user types in a value. Using the magnifying glass search works, but not if the user directly types in a value. The blue wheel just spins and never returns a result. I made sure all the search fields were added to the model, but the no result is still an issue. This is happening across the skuid on Salesforce. All lookup fields don’t return results. Any ideas on how to fix?
Is there a way I can dynamically assign a model to a file upload component? I am trying to create a generic page to display attachments, which will also allow users to upload new attachments and use this page as a page include across a variety of object record detail pages.Zach helped me here https://community.skuid.com/t/get-sobject-name-from-salesforce-id with building a map of salesforce key prefixes and the corresponding object names dynamically. I am making use of this map to check against the id of the salesforce record, determining the sObject and am able to build the object model on the fly using javascript. Now, I have a file upload component on my page, to which I want to assign this newly created model.Is there anyway I can do this? Is there any documentation on this?
Is it possible to deploy the SKUID app into a company’s own domain or can the whole app deployed to a private/cloud server using any web server (PHP, node, Apache or IIS) ?
Actual, I was able to add the condition on UI Model through XML, but when i try to activate the condition through Table filter (Toggle) (NOTE: Table use UI model to display data), its not functioning properly. Would be glad if someone could help me with this.
I have 2 models: Program and Timeline, both have a field named Mail_Date__c. When the Program model Mail_Date__c is updated, need Timeline model Mail_Date__c to update to that same date. Action Framework only allows specific dates, so am using Snippet, but am unable to find the correct syntax. Here is what I have so far that is not working:var params = arguments[0], $ = skuid.$;var model = skuid.$M(‘Timeline’);var row = model.getFirstRow();model.updateRow(row,{Mail_Date__c: Program__r.Mail_Date__c});I assume the last line needs help. Thanks!
It’s so not-making sense that people can add past events or click the plus button on a past date.Is there any way to disable users from adding past events.Thanks
Is there a way to compare two dates in a ui-only formula field?I can’t seem to figure this one out.
I am trying to build ONE page to display and add notes/attachments and also display the object history which can be used across all objects through a page include.I am thinking the page can take the salesforce id of the record and based on the id, I can determine which salesforce object it is and then create the model using javascript.My question is how can I can determine the sObject based on the id? I know how to do it in apex but it would be great if I could somehow achieve it using Skuid.
Naturally, safe-harbor and all that. But if there’s anything your team is willing to share would be great.Recently, we migrated some of our services to Google Cloud. And currently Drive and Calendar are supported by Skuid.The AWS thread here talking about SQL made me want to ask because we have a similar need for Google’s “Cloud SQL” (which supports PostgreSQL[beta] & MySQL).And specifically, https://cloud.google.com/appengine/ and https://cloud.google.com/functions/ are where my real interests/needs are at the moment.Thanks.
Attempting to build a Calendar for our German team. The Daily Calendar isn’t displaying any Events on the Daily Calendar and showing duplicate Assigned IDs. Followed the instructions on the Skuid Tutorials and I’m not sure how to resolve this issue. Any and all help is greatly appreciated. Thanks, PJ
I have included the field “BillingStateCode” in an account model and included the field in a table. The value that is showing up in the table for the state “OR” is showing up as “Odisha”. The text value looks fine, but the field we need our users to have is the BillingStateCode. This is very confusing to the end user and I would like to resolve this if possible. I am not using any field renderers or templates, I simply added the field to the table.
I am trying to update a field using a mass action. I have a UI Only field that calculates a new amount for a field using a COLA (Cost Of Living Adjustment). Both the UI field and the destination field have the same format (Currency 9,0). The field that is trying to be update is referenced in the UI only formula field. Does anyone have any ideas what may be causing this error? Thank you!
I have written a snippet which is as follows: var element = arguments[0], $ = skuid.$; var leadmodel = skuid.model.getModel(“Lead”); var raw= leadmodel.getFirstRow(); var MatterType=raw.Matter_Type__c; // Field on skuid page var wlgoffice=raw.WLG_Office__c; // Field on skuid page var result = sforce.connection.query(“SELECT Name,Attorney__c,Matter_Type__c,Wlg_Office__c,Attornies__c,Id FROM Consulting_Attorney__c where Matter_Type__c ='”+MatterType+“‘AND Wlg_Office__c =’”+wlgoffice+“'”); // Query on salesforce object var opp= result.getArray(“records”); var string = opp[0].Attornies__c; var array = string.split(‘,’); // Create an array of string//Till Here snippet working fine var rowstoupdate ={}; for(var a=0;a<array.length;a++){ raw.Attorney__c = array[a]; } leadmodel.updateRows(raw); Now i want to assign values of array
I have an object called application. In the application object there are two fields ‘Status’ and ‘Purpose’. I want to make the ‘Purpose’ field to be in edit only mode on skuid layout when my ‘Status’ field value is ‘approved’. Can anyone help me?
I have custom button in a custom object with content source as URL. This button is invoking Conga upon its action. If I can login with the admin profile user, then upon this button click everything works as expected. If I try with non admin users, upon this button click nothing action happens and chrome console throws the following error. skuid__SkuidJS:formatted:28343 Uncaught TypeError: Cannot read property ‘Id’ of undefined at HTMLDivElement. (skuid__SkuidJS:formatted:28343) at HTMLDivElement.dispatch (skuid__JQueryJS:3) at HTMLDivElement.r.handle (skuid__JQueryJS:3) If I debug and see, weblink property is found to be undefined in SkuidJS. The user has all the permissions to all the object and fields related to conga and the objects used in the button URL. Also, Skuid Admin, Skuid Page Builder and Skuid Page Viewer permissions assigned to that user. Also, The same button works fine for non admin users in Salesforce standard layout. Thanks.
Strange situation here. We have a Tab in Salesforce Classic that users click to access a set of Skuid pages. I have one user who has been accessing these pages successfully for months now. Today, he clicks the Tab and only gets a blank screen. No one else in the same profile is having this issue. I verified that he still has the Skuid Page Viewer permission set. I have tried removing and re-adding this, but no change. Any ideas on what might be causing this behavior?
Can I setup hotkeys to toggle between two tabs?
This inline javascript: (function(skuid){<br>var $ = skuid.$;<br>$(document.body).one('pageload',function(){<br> &nbsp; &nbsp;console.log('Page Loaded');<br>});<br>})(skuid); When I run the page with the skuid preview, it works fine. When I run it visual force on a salesforce Site, the code doesn’t execute and my console is blank.
Having some trouble finishing up a particular app for our users because of one validation. I have built a way for the user to merge multiple line items at a time, but currently they are able to merge different types of parts together, which is not something we want them to be able to do. We want the new merged item to be only one part. This information is taken by adopting the chosen rows into a new model. Tried to do a validation with branching action framework, but it wasn’t looping through each row in the model. Working on putting together a snippet to handle this, but so far it’s not working right. Previously, I had the problem that some of my variables were coming up as undefined. I think I’ve gotten around that problem for the most part. Any suggestions would be welcome. var params = arguments[0], $ = skuid.$; // variables var NumbersToMerge = skuid.model.getModel('NumbersToMerge'); var SamePart = true; //Check each row and compare part field $.each(NumbersToMerge, function(
Hi, We do have CPQ Cloud application integrated into salesforce.com via installed package.This tool is used by our sales team to generate new quotes on the oppty in SF.com.We use a skuid oppty page.So far I was not able to find a way to replicate on our oppty skuid page CPQ Cloud “Set as Primary” button.When I click on the button there is no URL link I can use to copy/replicate into Skuid button.In salesforce.com “Set as primary” button is type “list button” and content source “OnClick JavaScript”.I am not a JavaScript expert.I have tried to insert “set as primary” javascript code in salesforce into a snipet button but it did not work.May I ask for some support or good advise to find a way to replicate CPQ Cloud “set as primary” button into our company opportunity skuid page ?Thank youCyril
I am using the REST service "https://restcountries.eu"; which is given in the REST example …I wanna display all records for “currencies”.I have given the endpoint “/rest/v2/all”.However it always displays only the 1st record i.e.
Is this possible?
When i have click lookup field show alert popup . How to disable ? I am sharing snapshot please verify about this.
Whenever I try to open another page without saving anything on the previous pages, It is not showing the unsaved changes alert message. I am wondering if that is the bug or if I am missing anything else. I have set the “Warn users if page has unsaved changes” To YES on skuid pages as well. Still not working.
I’m looking to Skuidify the Content details page in Salesforce CRM Content. The current Content details page (in native Salesforce) has the capability to subscribe to various things (Tags, Document, Author, Library, etc…). Has anyone Skuidified this page and if so how did you keep or replicate the subscribe functionality (you can subscribe by clicking on the heart next to an item on the screen shot below)? Thanks
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.