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
I can’t think of a good way to auto-number each new row added to a table within my page. I’d like my “Line Item” field to auto-populate with a new number for each row created when the “Inline Record Creation” button is clicked. Right now I have an action set to update the “Line Item” field with the {{Id}} of the row when a new row is created. This works, but it starts at 2 and then jumps to 5 on the next row and so on. Can anyone think of a way to make it start at 1 and then 2,3,…? (The order doesn’t really matter) Thanks for the help!
I have a pageinclude that pull in a skuid page that uses a Master page. The “showheader=false” on the Parent Query String doesn’t appear to hide the child page’s header. Am I correct in assuming that the “showheader=fase” query string will only hide the standard SF header but not the skuid master page header?
Hi,While writing a snippet where I have to query a model with loads of records in it (800+) I felt the urge to use model.sync() instead of model.updateData() because of the load time. As far as I can tell model.sync() is basically the “get more” version of the multiple actions. I know model.sync() is a prototype method and not documented by any means.Although there is a bug in it and I really would like to have it as an official function 🙂Cheers
I’m getting the above error and I can’t figure out at all what’s going on. I have a Skuid page called Inner, which has in it just a template with some text in it. Then I have a Skuid page called Outer, which has only a page include component that includes Inner. If I preview Outer, it renders fine and I see the text coming through from Inner. But what I want is for Outer to appear in a Visualforce page. As soon as I embed Outer in a Visualforce page and view the Visualforce page, I get a console error: “Uncaught TypeError: UserContext.initialize is not a function”. I’ve tried it in two different orgs. Driving me nuts. Anyone seen it before?
This is a continuation of this other thread, but I’m reposting because I’m in a hurry and the other thread was marked ‘Answered’ for some reason.Simplified use case:Everywhere the ui finds a picklist field called Primary_Phone_Type__c, run a custom field renderer snippet called “renderPhoneTypes”Everywhere the ui finds a picklist field called STD__c, run a custom field renderer called “renderSTDs”Etc.I have an inline static resource which includes this code: // Get references to our original picklist field renderers var fieldRenderers = skuid.ui.fieldRenderers;&nbsp;<br>var PICKLIST = fieldRenderers.PICKLIST;<br>// My custom Phone field renderer<br>var checkPicklistRenderer = function(field, value) {<br>//Object as switch statement<br>var globalPickFields = {<br>'Case_Type__c': 'renderCaseTypes',<br>'Primary_Phone_Type__c': 'renderPhoneTypes',<br>'Alternate_Phone_Type__c': 'renderPhoneTypes',<br>'Interaction_Intention__c': 'rend
Anyone ever seen this?
Hi There,I would like to modify the error message thrown by validation rule from salesforce to Skuid page .any good way of doing this ?
I can’t figure out how to customize the data labels of my visualization charts…I am only getting the standard format of (Aggregate Function): (see below) Since this is a pie chart of Age, it looks like the label is really the data point (24 records instead of 1 contact record of Age 24). How can I customize these data labels to make this a little more straight-forward…e.g. Add % of Total Change format to say, "Age : 2 Contacts" Not include aggregate function title (e.g. COUNT/SUM/etc.) I see on the Skuid Banzai page this is possible, as has been done with the World Bank Key Indicators data, so it has to be possible…just curious how to do so? Thanks! Conlan
Is there an example of a table where the selection is a check box and only one line can be selected at a time. If a second box is selected, then the first box is unselected. An enter button would be pressed and the item Id of the checked line would be passed?
Hi,I’m building a skuid page to display cases (we use email-to-cases), and I’m having difficulty displaying emails.When I use “textbody” for an email, it displays the text as a long string and not rich text formatting. When I use HTMLbody, it displays the HTML code. I would either like to display the RTF properly, or display the HTML in the email.I suspect there is a way to do this with running a snippet in the Field Renderer, but I’ve tried multiple ways to do this and I’m not having luck. Please advise.Thanks!
All,Is there any best practices list which could help design complex pages with REST models, with having more than 10 models and conditional renderings , wizards kind of stuff ?
Hi, I have a custom field renderer to populate a picklist, I have gone through this post : https://community.skuid.com/t/field-rendering-twice I am not actually doing any update in field renderer snippet but in other snippet which I am running on a model action. any one has an idea why this is happening ? Here is my field renderer snippet : var field = arguments[0], value = arguments[1], $ = skuid.$; var addressModel = skuid.$M(‘Address’); var addrRows = addressModel.getRows(); console.log('field = ',field); console.log('value = ',value); var picklistEntries = field.metadata.picklistEntries; console.log('addresses ==== ',addrRows); picklistEntries.length = 0; $.each(addrRows, function(){ picklistEntries.push( { value: this.Name+this.Id, label: this.Primary__c ? "Primary Address-"+this.Name : this.Name, defaultValue: this.Primary__c ? true : false, active: true }); //add Name field i.e. Address Line-1 Field Value as pick list ent
Hi,I have checked Development Mode to write some VF stuffand had to see some model data on Console to trouble shoot an issueSaw an error : VM3331:2 Uncaught ReferenceError: skuid is not definedbut when I go remove the Development Mode, then only the skuid api started working on Console.Any idea how can we get this though I have Dev Mode active ?
I’m filtering model 2 to include values not in model 1. When model 1 returns records, everything works correctly. When model 1 returns zero records, model 2 continues to use the previous query no matter what I do. How can I resolve this?
I am trying to use a snippet and a custom button to export model data to excel but I have a couple things I am stuck on. I am mainly doing this because I want to export fields that are outside my table but do not want to append the record id. It seems I can’t do both point and click.1. When using a snippet, how do I add custom labels to the fields? Is this possible?2. When using this method it seems I lose the functionality of selecting which rows I want to export. Is this true? Can you only export all rows?Here’s my sample snippet:var model = skuid.model.getModel(‘Estimates’);model.exportData({ fileName: ‘All_Estimates’, usetablecolumns:“false”, fields: [ model.getField(‘Estimate__r.Name’), model.getField(‘Estimate__r.Description__c’), model.getField(‘Estimate__r.Location__r.Name’), model.getField(‘Status__c’), model.getField(‘Estimate__r.Status__c’) ], doNotAppendRowIdColumn: true,});
We have a part of our partner portal where clients log in to submit new work requests. This generates a record in a custom object UCCLien__c. We’d like for this submittal action to also cause the person submitting to follow this record in Salesforce, so when we change a field that is in the feed tracking, e.g. Status, they get notified, e.g. Jack Sanford changed the Status to Complete. Is there a Chatter object that links a user to an object’s record? Then we could create a new row in this object’s model with the submit button actions. If not, any other ideas for achieving this?
I would like to create a skuid page for tasks only related to our “Employee_Location” object. So far, I have created a new task record type for “Employee_Location”, however I am not finding a way to automate salesforce into setting the correct record type when a task is created. So far my research has lead me to believe this is difficult or impossible.Is there a workaround in Skuid where I can create different task pages for tasks which are related to different objects?Thanks,Shane
All,I have page called OSC_List let say, I already moved this to our TST org for QA.Now, something comes up, I had to make few changes in DEV on the same page, now, Since the component is same (Same SKUID Page), for suppose , if I upload the same change set which I have created to TST org again .Do we get the recent copy of Skuid page ? or the one which was at the time of preparing change set ?
I’m using picklist as a grouping field in charts. Does anyone know why they are not translated? (I added translations in translation workbench in SF)
I’m currently creating a skuid page for tasks. In the title I have {{Subject}} and in the subtitle I have {{What.Type}}: {{What.Name}}. It seems to be working well, however I would like the What.Name to link to the actual field it is related to. I have tried creating a hyperlink in Salesforce in the Custom Activities Fields, but I’m not sure why but it’s not letting me reference anything beyond WhatID. Is there a way to create a hyperlink in Skuid directly? I know that I can reference the id in skuid with {{what.id}}.Thanks in advance.
Sorry if this is a duplicate question, but am unable to find a solution on community. I have a Salesforce process builder to add the Task WhoId as a campaign member based on a custom field value. It does not allow users to select the value more than once per Contact (WhoId) if they already belong to the campaign. The error message makes no sense to the users, so I need to customize a system error message. Is there a simple way or sample of this that does not require heavy coding? – Thanks for any help!
There is a function available on the skuid model object, called “validateRequiredFields”, but I couldn’t find any documentation on it. What does it do?
We are a school and our “Accounts” are actually families.I have imported my new contacts into a skuid table on a custom object and the account id has been filled in for each row. Now I need to create a contact for each row under it’s matching account. I would like a row action to do this. Can anyone send me the code? The custom object fields match fields on the Salesforce contact object.Thanks!
I have a two object where the child record is created whenever parent Status to changes to certain value. User gets a email to click on this link and which will be redirected user to Child Record Skuid page. In this page we have some field which we have marked as Required(on SKuid page, not from backend). But when we submit this record, Skuid required error is not working even though value on the Fields are blank. Is there a specific condition I am missing?Kindly suggest.
I have a popup on the table that works like a charm for everything, except I would like to have Velocify Pulse to appear and be available to edit on the popup. is it something i can include via an iframe? Currently Velocify is on our sidebar in salesforce. Any ideas or workarounds are welcome. 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.