Upcoming Event - Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Is it possible to download a skuid page as a pdf, in the same way you can download the data as an excel file?
I have a Skuid detail page with two models: meeting and invitees. I have a field set for the meeting at the top (for one record whose id is passed in as a parameter) with a related list (table) of invitees below. I have a page title at the top with an action that runs a snippet. In the snippet I’m trying to copy the value of the Subject field from the meeting to all of the invitees, save the meeting and the invitees (as the user may have updated fields everywhere), then redirect to another page. I’m nearly there, but I can’t work out the save and redirect routine. At present the only way I can get it working is for my snippet to do the field copy, then to do the save and redirect in a standard save action, which is obviously a two step process. How can I make the snippet do everything? Here’s the snippet as it stands without the save and redirect: var $ = skuid.$; // Get references to our Models var models = skuid.model.map(); var meeting = models.Meeting; var invitees = models.Invitee
Krista asked a question that I felt merited its own topic. " 2. How can we auto populate/auto-select State and Country Picklists. The picklists are a new enhancement from Salesforce . . . "
Is there a way (or a plan) to support multiple languages in skuid? Our app has gained significant momentum, and looming is the requirement to support languages other than english. This would mean tabs and table labels etc being translated. Is this possible?
Is there a way to trigger a popup from javascript?
I was following these instructions: Page Not Found — Skuid v15.1.6 Documentation and I am tweaking it to work with the Lead object and am running into a hiccup. When I click the button it opens fine and everything populate properly with the exception of the “Related To” section. I need the “Name” and “Related To” field to auto populate with the Lead ID. Any help would be greatly appreciated. Thank you!
I am working in the Leads object and I want the email address field to use SalesForce to send the email. How do I code that field appropriately? Thank you.
I want to set conditional formatting on the Priority field on the standard Task object. If the priority is High, I want to add a class to the HTML element so that I can apply custom CSS through the class. I’ve read various posts here that are similar to this need, but I’m having trouble extrapolating from them. My attempt so far is to use a custom field renderer on the Priority field in my table of Tasks and to call the JQueryUI function addClass(). Here’s my inline snippet that I’m using as the custom field renderer. Am I in any way on the right track? var field = arguments[0], value = arguments[1]; if (field.mode == ‘read’ && field.value == ‘High’) { field.addClass(“highpriority”); }
Is it possible to include a Chatter Feed in a popup? When I select my popup in the page builder, the Chatter Feed component disappears, so I suspect it can’t be done. Doesn’t stop me wanting it, of course.
In the mobile builder lists a number of divs within a deck and I want to redirect and pass on parameters such as the Id from the record clicked. What are the merge codes to get these. What I want to do is start with a page where I list all active campaigns. When clicking one of the campaigns I want to redirect to a page with all campaign members for the clicked campaign. I can test this by hardcoding a merge field like /apex/skuid__UI?page=EventPlan2&cid={{$Model.Campaigns.data.2.Id}} However I can’t find how to dynamically change the 2 to the record that got the tap. Maybe there is a better way of doing this by having two panels and reloading the Member model. Suggestions are very welcome.
I have a user entry field that has date/time as the data type. I would like to set the default value to Now() when adding a new row in a table. The user can change the value if needed.
How to move Buttons, Links and Actions as part of Change Set. When i try to move from Development to QA environment, i can move SKUID pages via change set but the assignment of those (overriding) pages does not happen… i have to manually do it in every sandbox org and potentially in Production. Anyway to eliminate this manual work?
We use a shared scratchpad which is a google drawing page wth url as a web tab on salesforce. I would love to add it above a set of tables we have on a skuid page. Is there a simple way to do this?
Hello, Can we use Amazon Storage in our task page when we insert new task. Please tell me can we use the Amazon storage in Skuid Page?If yes, then how? Looking ahead for an quick response? Thanks. Arpit
When using the Date Range Table Filter if I start to type a date in the filter box it automatically populates the box with the current date. This forces me to use the arrows to manually click to the desired month/year that I am wanting to filter by. Now this isn’t a major issue if the year I want to filter by is the current year but if I want to go back to say 2008 it can be a hassle to click that many times. Is this the way it is intended to work and if so is it possible to eventually let it allow you to type or click the dates you are wanting to filter by? Thanks, Michael
I have a few text boxes that I type information in and afterwards I need to move them to another column for prioritizing. Currently I have to retype all the information. Is there a way to drag and drop the information from one column to another?
Has anyone installed the HubSpot integration app using Skuid pages? If so, how did you get the data to show when you have enabled the skuid overlay?
I have a button on a list view that I would like to apply to selected records on a skuid table Is there a simple way to do this? The code on my button is {!REQUIRESCRIPT(“/soap/ajax/10.0/connection.js”)} {!REQUIRESCRIPT(“/soap/ajax/14.0/apex.js”)} {!REQUIRESCRIPT(“/resource/1355393414000/smagicinteract__jquery”)} {!REQUIRESCRIPT(“/resource/1355395084000/smagicinteract__jqueryUI”)} {!REQUIRESCRIPT(“/resource/1355395025000/smagicinteract__jqueryuicss”)} {!REQUIRESCRIPT(“/resource/1359133317000/smagicinteract__sendSMSJS”)} var records = {!GETRECORDIDS($ObjectType.Account)}; if (records[0] == null) { alert(“Please select at least one lead”); } else{ var packagePrefix = “smagicinteract__”; var recordType = “Account”; var recordIds = “”; var nameField = ‘Name’; var mobileField = ‘Phone’; var optOutField = ‘’; var smsType = ‘popup’; var userId = ‘{!$User.Id}’; var elementIdVar = ‘’; var showUserDropDown = false; var dialogTitle = ‘’; for (var n in records) { if(n == ‘remove’ || n == ‘indexOf’
I have a Queue Component that will pull in records with two different Record Types. I want the detail page that the Page Include references to show different fields depending on the Record Type of the Record selected in the Queue. I read that I might be able to use Javascript to kill a Field Editor if a record doesn’t exist, but the record will exist it will just have a different Salesforce Record Type.
i have an aggregate model that counts the number of times a first name last name combination appears in the client object can i filter the model to only display > 1 for the count ?
How many models can a page have before performance is noticeably impacted? Best practices on this?
Hello I want to show one text field only when i edit or insert an new record in Skuid.I do not want it to display in detail view. Please help me in this and tell me what is the best way to do this thing. Thanks.
I would like to put a document viewer into the Skuid page to have a document that can be viewed while fields are still able to be edited.
Hello, The task subject field is an picklist field but is coming as an text type of field when i am using it in skuid. Can you tell me why it is coming as text type in Skuid and not as how it comes in Standard task page. Please tell me about it as i want it to come like it comes in standard page. Please help me with this. Thanks. Arpit
I’ve read the community posts and the developer docs about getting the running user’s session ID using XXX. But I can’t get it working in my JQuery function below. The function runs SOQL database queries based on input text using JQueryUI autocomplete. It needs to make a connection to Salesforce using the session ID, but it fails, giving an error in the console: Uncaught {faultcode:‘sf:INVALID_SESSION_ID’, faultstring:‘INVALID_SESSION_ID: Invalid Session ID found in SessionHeader: Illegal Session’, detail:{UnexpectedErrorFault:{exceptionCode:‘INVALID_SESSION_ID’, exceptionMessage:‘Invalid Session ID found in SessionHeader: Illegal Session’, }, }, } I’ve tested the function by hard-coding the session ID and it works fine, so I just need to nail this issue. Here’s the code, appreciate any help: skuid.$(function() { //Establish a connection to Salesforce using the //sforce.connection.init(sessionID, ServerURL) function. var template = “{{$Api.Session_Id}}”; //This isn’t working! var sid =
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.