Upcoming Event - Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
Any reason I could be getting an invalid_grant - authentication failure error in the console when trying to run skuid-pull? I’ve checked and rechecked the:client Id client secret username password + security token All are correct.Is there something else I’m missing?
when a popup is opened with a context (that contains a parent id) i need to be able to get that id from the context in a snippet in a table header on the popup do i use {{}} ?
I have a page with a single model and a table on that model. The model is set to query ALL ROWS.On pageload, the soql looks like this:“SELECT IsDeleted,Name,Interaction_Category__c,Interaction_Purpose__c,Interaction_Type__c,Room__c,Room__r.Name,Date__c,End__c,Primary_Staff__c,Primary_Staff__r.Name,LastModifiedById,LastModifiedBy.Name,Patient_Case__r.Patient__c,Patient_Case__r.Patient__r.Name,Status__c,Id FROM Interaction__c WHERE (Interaction_Category__c = ‘Appointment’)AND(IsDeleted = true) LIMIT 21 ALL ROWS”However, as soon as I apply a table filter or attempt to sort the model, the ALL ROWS is dropped from the soql:“SELECT IsDeleted,Name,Interaction_Category__c,Interaction_Purpose__c,Interaction_Type__c,Room__c,Room__r.Name,Date__c,End__c,Primary_Staff__c,Primary_Staff__r.Name,LastModifiedById,LastModifiedBy.Name,Patient_Case__r.Patient__c,Patient_Case__r.Patient__r.Name,Status__c,Id FROM Interaction__c WHERE (Interaction_Category__c = ‘Appointment’)AND(IsDeleted = true) ORDER BY Da
Hi, I have a field editor for capturing payment info from customer on step-3 of a wizard. If user goes back to previous steps and come back to this 3rd step. this editor is doubled and layout shows twice. Any ideas what is causing this ? Note: I am not having any render conditions on this Editor but on the fields in this editor. Below is the snapshot of that specific model data printed on console:
I am using Eclipse, salesforce, Skuid, and git. In Skuid my project’s skuid pages were placed in modules. Each module was packaged to a “static” resource using the “Package Pages in Module” Skuid option. From Eclipse, if I refresh the project from server I can see those packages being downloaded to a folder called staticresources. Am I doing a backup of my skuid pages? Thanks in advance
We created a custom skuid opportunity page to replace the salesforce default opportunity page. On the default salesforce page opportunity when opportunity line items are added the amount field on the opportunity uses the amount off the opportunity line item and locks it so users can’t update the amount field. On the skuid opportunity page we added amount however it is not getting locked when opportunity line items are being added.
I am not able to modify a mobile page in mobile composer in dev environment. For example, you click on a deck and the mobile composer does not give the options to add components or other configurations that are typically available. We have another environment where it works as expected. Both environments are running 8.8. Help!
I am trying to change the “Default Mode” from “Read with Inline-Edit” on the field Editor Properties to Read-only, but using javascript to control this. The idea is to set this mode based on record type. Ex: If (recordtype=a) {Set the Field Editor - Default Mode to Read-only}else {Set the Field Editor - Default Mode to Read with Inline-Edit}Any example on how to accomplish this will be greatly appreciated.
So I successfully overwrote the Opportunity Detail (View) and Lead Detail (View), using the tutorials with custom VF. Basically: (name/label OpportunityDetailsView) <apex:page standardController=“Opportunity” extensions=“skuid.Redirects” showHeader=“true” sidebar=“true” readonly=“true” docType=“html-5.0” action=“{!IF(canUseSkuid,‘’,redirect)}” title=“{!Opportunity.Name}”> <skuid:page page=“OpportunityDetails” actionType=“View” /> </apex:page> And then on Op, Buttons & Links & Actions → View → Override with SF, pointing to this page. Then I tried to use page assignments to make an user view the standard SF page for Opportunities but without success. I’ve Tried with Object Type → Opportunity, Applies to User, selecting the user. I’ve tried packaging the page assignments, and I’ve tried with Other as object type and using “OpportunityDetails” as the name & “OpportunityDetailsView”, but both still redirected to the skuid page. I’ve also added a global p
I want to utilize an Accordion within an HTML template component. I have attempted to use HTML tags (which worked great in some browsers but is not supported broadly enough). So I thought I would look for a script off the web. Anyone have a suggestion for a simple component on the web they think would do the trick. I tried a couple out by including an external reference to Jquery via a CDN, included the Javascript code within an Inline script and included the CSS provided in the demo in an inline CSS. Then pasted the demo HTML into a Template component (allowing HTML selected) and have not found something that works. It could be that there are plenty of great components but I am fundamentally doing something wrong when trying to get them to work with SKUID or I may be picking components that are not SKUID friendly. Any tips/suggestions for some code that would provide accordion functionality within the SKUID Template component HTML would be appreciated.
Hi,I’m trying to accomplish the following:I have a button on lead, that opens a popup that allow us to create a New related Record (loan)I’m trying to add a button on that popup page(which is a page include) to Save & New (basically allow to create another record within that popup)From what i tried:URL Redirect cannot work as it does not redirect on the popup frame, but on the parentSo tried the following sequence of action:-Save model (for 1st record i created)-Close topmost popup-Show popup with the same page include used in step 1, and pass the model’s ID for first row (which should always be there, as we just created one on step 1…)But no matter what I try, the Id would not pass, therefore the second new record i created is not related to any leadConsole shows the sameI cannot see why…Any ideas?Maybe there’s even a simpler way to accomplish allowing to create new records, one after the other, within the same or a new popup?Any help would be appreciatedThx
I have followed the instructions on this page to create a drag and drop queue. I wanted to display more data on the card but some of the data I want to conditionally show. I wrote an ‘if’ statement to do this and the correct info prints in the console but not on the template. Basically if the deadline field has a value then show the value otherwise don’t. Can someone point out the error of my ways? Thanks! Altered Code: var args = arguments[0], item = args.item, list = args.list, model = args.model, element = args.element, row = item.row, deadline = row.Custom_Field__c, renderTemplate = '{{{Name}}} {{Amount}} ' if(deadline !== ""){ "D:"+ deadline; console.log('Deadline' + deadline); } else{ null; } Original Code: var args = arguments[0], item = args.item, list = args.list, model = args.model, element = args.element, row = item.row, renderTemplate = '{{{FirstName}}} {{{LastName}}} - {{{Company}}}', mergeSettings = { createFields: true,
Hi, another question relating to external data models - if I use the Apex proxy rather than the browser, does the Apex code make a regular call out, or does it use the continuation feature (described here: https://developer.salesforce.com/blogs/engineering/2014/05/put-apex-sleep-salesforce-asynchronous-ca… )?I’m thinking that if it doesn’t, it won’t take much use to blow past the “10 synchronous concurrent requests for long-running requests that last longer than 5 seconds for each organization” limit.Thanks in advance!
And the query generated using Service__c for grouping that works fine. SELECT SUM(Starting_Hours__c) sumStartingHoursc,Service__c servicec,Service__r.Name servicerName FROM Task__c WHERE (Work__r.Sprint__c = 'a3oj0000000Xb5nAAC') GROUP BY Service__c,Service__r.Name Using Work__c instead of Service__c for grouping should work just fine as well, but sadly no. :(
I created a new Campaign tab and detail page in my sandbox (Rockaway, Summer 16.) Everything is fine there. When I moved the pages to production (Banzai, Spring 16), I get an error on both the tab and detail page "Invalid Model Service “salesforce” on Model “Campaign” ". In addition, on my detail page, there are native object fields (most of my problems are on the Campaign Members native SF object) where the object fields are included in the model, but not available in the model field picker. For example, Email is a native Campaign Member field, but not showing in the field picker. therefore, I have lots of model field errors on this page. Are these problems related, and how can I resolve them?
I have an external data model that I want to display in a calendar component. When the date is (i.e. user selects a date from the date picker or uses the back/forward buttons) updated, I want to re-query the model, but pass in the selected date to the re-query so that the external system knows what events to fetch.What’s the safest way of doing this? I can’t find anything in the Skuid JS docs on the calendar component that exposes the currently selected date, or any event triggered when the date changes. Closest I’ve got is something like: skuid.$(“#sk-id-here”).datepicker() which I can traverse to find the currently selected dateMy other concern is that, from what I can see, if I change the date, a re-query happens automatically. For Salesforce models, I can understand that a date change can be applied to the model in a way that affects the underlying query, so that only records within the date ranges are fetched.I don’t think this is possible with external data - though I’d love to b
Hi, I have a button which has multiple actions to run on click. Action 1: Run a Snippet Action 2: Another snippet Action 3: Run 3rd Snippet Here , what I am trying to achieve is - only after finishing the first snippet which saves my record and then start running other ones But currently, what is happening is - I observed that 3rd snippet is running before the first action in list. This is how my action framework looks like: Here is my first snippet looks like: // Get references to our Models//Define Variables required var $ = skuid.$; var mainDFD = $.Deferred(); var models = skuid.model.map(); var bpModel = models.BillingProfile; //Save Billing Profile var saving = skuid.model.save([bpModel],{callback: function(result){ if (result.totalsuccess){ //alert('Billing Profile Id: ' + bpModel.getFirstRow().Id); // should be a real SF Id now //console.log('Billing Profile - ID ',bpModel.getFirstRow().Id); //$.unblockUI(); //mainDFD.resolve(); } else { // T
How can I access the settings I have customized in the Skuid Settings tab so that I can deploy them to other SFDC orgs?I’m particularly interested in being able to deploy component packs and data sources.
Hi Team!Is there a method I can use in javascript to determine if a page is Mobile or Desktop?
While many other posts on the community suggest Skuid uses JQuery Tooltips, I think they may be out of date. From what I can tell, ‘Aria’ is being used. Below is the desired tooltip on a row action, and it’s html tag: BEFORE HOVER: AFTER HOVER: I’d like to achieve the same effect with my exclamation mark in a custom field renderer. I’ve tried to replicate the HTML, but clearly the tooltip on the ‘Show Contacts’ button is being registered somewhere before the DOM loads. How can I achieve the same effect? ``
It looks like there is currently no way to conditionally render decks or wrappers in the mobile builder? Is that the case for everyone?Will conditional rendering work on mobile if I hack the XML?
I’m trying to override the standard Edit button on the Opportunity Object using page assignments (we need some people to be redirected to the skuid page and some to be redirected to the standard page). The VF Markup I’m using is: <apex:page standardController=“Opportunity” action=“{!redirect}&actiontype=Edit&objecttype=Opportunity” extensions=“skuid.Redirects”/> Users with the page assignment are redirected to the Skuid page correctly, but for people without the page assignment, they get the error attached. Any idea what’s going on?
Hi,I am displaying a skuid detail page for cases successfully in the service console in a main tab. However, the name of the tab is not populated using the case number, but ‘External Page’.Even if in the console app I change the case display to subtab, the subtab is named ‘External Page’.In the visualforce container that is used as view-override, I am setting the title property as {!Case.CaseNumber}. The skuid page itself also uses a page title element.Please advise.Bernd
Hi, I just went back to a page I created back in december , and realized on none of models on that page do I have the option to ** Prevent users from leaving page if this Model has unsaved changes Any Ideas what I can do to have that option back?**
We have a component in our package that allows users to build estimates on a table. We are getting requests to create “groups” or “options” within a single table. Any ideas on how to approach this? One challenge is that the user needs to be able to (almost) infinitely be able to create as many sub groups or options on the table as they would like. An approach would be if the user could add table after table, but I don’t believe there is a way to do “conditional tables” that would appear if the user clicked a button that said “add table.” Here is a rough mock up/concept in Excel
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.