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
Hi all,I’m attempting to use Banzai’s new REST connection functionality to connect to another Salesforce org. Is there a way to specify a URL parameter for an OAuth provider? Whenever I load the edit page that I’m working with, and the OAuth process begins for my model, the popup that comes up uses an incorrect redirect_uri parameter. Can this be overridden anywhere?Thank you!
Is it possible to add an existing VF page to a tab in Skuid
I’ve tried looking around for a solution for this problem, but to no avail. The problem that I’m having is I have a custom field that contains an error message along with that message I have an HTML link to the object that’s causing that error. I’ve tried using the merge syntax, but the link is still being escaped. The template looks like: {{#Error_Message__c}{{{Error_Message__c}}}{{/Error_Message__c}} Any hints that could point me in the right direction?Thanks!
So I’m transitioning our org over to using Page Assignments to provide different Home Page’s per Profiles. I’ve already created individual VF pages for each home page, the custom components linking to each VF page, and the home page layouts for each as well. But I’m noticing that using Page Layout Assignment isn’t actually overriding the pages. I have created brand new sets entirely separate from what we currently have so that I have no issues moving over to using <skuid:page objectType=“HomePage” actionType=“Tab”/> within my VF Pages. Also, have made sure to update the security settings on the VF pages so I wouldn’t run into that issue. Any ideas as to why they aren’t being overridden? I have gotten them to work in the past just feel like i’m overlooking some small detail
From a Skuid page, I have a Visualforce page redirect. What kind of tags can I add to the VF page back button so that end-users lands back on where they were on the Skuid page?Thanks in advance!
I have a skuid page where on save, I call apex code. So once the page data is filled and saved and if there is any exception on save,then neither can I select any value in the lookup fields in the same page nor can I re-render components.
I have an action with a popup. I want to see more of the popup to view more field sand try to expand the the top or bottom the popup by dragging the edges, the screen disappears and reappears at the bottom of the screen.
I have several Ui-Only fields that use Model_Lookup to return a number. The field being returned is a number, and the Ui-Only field type is set to number. However, in a table, there is no check box to enable order by for this field. Is this the intended design? It would be very helpful to be able to order by these fields.
Hi AllWe have a requirement where we have multiple filters on a table. out of all the table filters, we want two filters to be required and page throws an error if user has not selected value in these two filters. Problem is that these filters are multi select type and as soon as user clicks on apply button (in table filter), results are returned irrespective of whether user has selected any value or not.I couldn’t find an option in skuid and snippets to put a check on apply button in table filter. Is there any work around to achieve this?Thanks.
I have the condition: It seems to be comparing: a0Ej0000005Vr2rEAC to a0Ej0000005Vr2r If I turn off the condition then the number shown are 18 digits long and are the same Why the difference in number lengths? Is this why I get know matches?
I have a chart that uses an Aggregate model because otherwise I hit the heap size data limit. And I’ve got a fake/empty table that I’m using to filter the chart. But I’d like to actually show data in the table. Is that possible? I’m thinking I could do a table without any filters and the model has a condition of ID in the ID field of the aggregate model, and some actions so that when the agg model refreshes the basic model refreshes, but will that condition work?Any other ideas?
I have users who will be routinely attaching a report that is in .html format to a record.I can easily build a model to get the file id from the Attachment sObject… but how can I embed/display the html file on screen within skuid? If I visit ‘/servlet/servlet.FileDownload?file={{{Id}}}’ I just get a download of the file, and then I have to open it to view in a browser. I’d like to be able to display the html within the file on the page.
Question 1. I am unable to add the button in application . Ques 2. I have added the button in 'loan dashboard but it is not working . code-var applicationModel = skuid.model.getModel(‘Application’);var applicationRow = applicationModel.data[0];var appId =applicationRow.genesis__Funding_in_Tranches__c ; var agree = confirm(“Are you sure ?”);window.alert("id : "+ appId);if (agree){var retVal = sforce.apex.execute(“PricingController”,“borrowerAccepted”,{id:appId}); window.location.reload();}
If I have a function in a snippet that is called on page load, how do I then refer back to that function from an in-line snippet triggered, for example, by the action framework?Forgive me if I’m being horribly daft.Cheers!Louis
This is an extension of a great post here: https://community.skuid.com/t/how-do-i-render-custom-picklist-valuesI’m trying to take the selected values from a multipicklist field and render them as a picklist.Here’s my custom renderer: var field = arguments[0],&nbsp; &nbsp; value = skuid.utils.decodeHTML(arguments[1]),<br> $ = skuid.$;<br>console.log('Rendering Session 1');<br>var intakeModel = skuid.$M('BabyMeIntake'),<br>&nbsp; &nbsp; intakeRow = intakeModel.getFirstRow(),<br>&nbsp; &nbsp; interests = intakeModel.getFieldValue(intakeRow,'Learning_Interests__c');<br>if (interests) {<br>&nbsp; &nbsp; var interestsArray = interests.split(';');<br>&nbsp; &nbsp; var picklistEntries = field.metadata.picklistEntries;<br>&nbsp; &nbsp; picklistEntries.length = 0;<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; $.each(interestsArray,function(i,str){<br>&nbsp; &a
I have Multi-Pick list that when its values are checked it will Activate a condition in another model based upon what was selected. This works great except when the user clicks “UnCheck All” and the condition appears to get set to “None” and thus my models return no data. Additionally, I would also like to be able to default the Multi Picklist to be “All Values” rather than only one.
I am displaying a chart which has region like New York, Boston, Atlanta etc on it ‘X’ axis and their corresponding revenue on the ‘Y’ axis. Now on click of a particular region i want to open up a popup and only show data details specific to that region. When i set the name of the region in the context of the pop-up no data is displayed. The context is mapping the value of the region with the id. How can i map it with any other field?
Is there a way to show the value of a bar without having to hover? I saw an earlier example with %s on pie charts, wanted to know if values on bar/columns was also something that was possible.
When a popup is displayed in the model event ‘new row created’, a javascript exception “cannot read property ‘0’ of undefined” is encountered. Notes The popup is triggered when a “new row” is added to model if the model is marked to “process client side” the exception is NOT encountered Removing the field editor from the popup leaving only the page title, and the popup properly displays without encountering an exception Steps to reproduce: Create page using XML below Preview page Expected Behavior Popup displays Actual Behavior Javascript exception encountered Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="false" createrowifnonefound="true" sobject="Account" adapter="" type="" doclone="" processonclient="false"> <fields> <field id="Name"></field> <field id="CreatedDate"></f
I have a table that has 2 conditions that are always on and 3 conditions that are off by default. The model for this table has a max# of records at 100 and is being ordered by one of the off by default conditions.When I go to load more with this setup, it will only load 178 records when it should really be 200 records. It is excluding records I know exist.If I leave the order by blank, it will pull in the 200 records when I load more. Why would this happen and is there a way to sort and still pull in the correct records?Thanks.
Is there a way to show the count of items selected in a multipicklist rendered as checkboxes?The standard renderer does this for you when you’ve selected 4 or more. How can I access that value?
My button for building page assingment packs isn’t working, and it looks like it’s because I don’t have the snippet skuid.pageAssignments.packAll. I’ve attached what the snippets look like for my “Page Assingment” page. Could someone send this my way or give any insight into why its not triggering?
I’m new to all of this. I trie to use Dhtmxl Ganttchart (jquery) as a project-tool. There is no problem in retrieving data from models but when i make changes i dont know how to save them back into SF. var element = arguments[0], $ = skuid.$; element.html(‘’); $(document).ready( function() { var omrModel = skuid.model.getModel(‘Omrade’); var omrId = omrModel.data[0].Id; console.log(omrId); var omrTask = {id: omrId, text: omrModel.data[0].Name, open: true, type:“project”, /color: “colorcode”/}; console.log (omrTask); var doModel = skuid.model.getModel(‘Delomraden’); var doTasks = ; doTasks.push(omrTask); var aoModel = skuid.model.getModel(‘AO’); $.each(doModel.data, function (i, doRow){ console.log(doRow.Name); doTasks.push({id: doRow.Id, text: doRow.Name, open: true, type:“project”, parent: omrId}); doTasks.push({id: ‘P’ + doRow.Id, text: 'Projektering: ’ + doRow.Name, start_date: doRow.Start_projektering__c, end_date: doRow.Slut_projektering__c, open: true, type:“task”, progress: doRo
When I look at an application (custom object ) in cl originate and click on the skuid tab(application detail) under it - nothing comes up? Other skuid page tabs are working fine . What can be the problem?
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.