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
I’d like to create a skuidified profile page. One thing I’m not sure how to do is update the profile pic. See video on stock salesforce and whether or not any of the functionality can be tapped into.
I am trying to write my first Javascript code to set the condition of one of my models, but I am getting an “Uncaught TypeError: undefined is not a function” message on my if statement and I’m not sure how to make this a function. I have tried to read other posts to figure this out, but I think that I have hit a wall with my little understanding of Javascript. I am trying to activate and set a condition if a checkbox on another the TableFilter model is checked. var myModel = skuid.model.getModel(‘AlumniConnections’); var myModel2 = skuid.model.getModel(‘TableFilter’); var myModel3 = skuid.model.getModel(‘Admit’); var DesiredIndustry = myModel.getConditionByName(‘DesiredIndustry’); r = myModel2.getFirstRow(); s = myModel3.getFirstRow(); if (r.X1__c ===true) DesiredIndustry.setCondition(DesiredIndustry, s.Job_after_MBA__c);
I have a lookup field that is rendering as a picklist, and using a custom “Display Template” to show an alternative field on the target object (instead of the record name). The value in this field is kind of long - basically a sentence. It basically works fine in read mode, showing the entire value, and when you click on the field to make a selection it shows the whole value when editing the picklist. However, in full edit mode, once picklist closes the rendered field length shortens to fairly small - 25 characters or so, which cuts off the value. See the brief screencast example.Is there any way make the value render longer when the picklist is in edit mode and the drop-down is not showing?
I know I’ve seen this done in a few different threads. Can someone point me in the right direction? I’d like to create some fields just for the UI that I don’t need to store in the SFDC object.
I’m sending parameters to an apex class using sforce.apex.execute and want to send an sObject record as a parameter var result = sforce.apex.execute(&nbsp; &nbsp; 'eventSKUIDnewmember',<br>&nbsp; &nbsp; 'newmember',<br>&nbsp; &nbsp; {newmember:row1 }); - so my question is how can I get a specific record from SKUID - can I use row?where:var row1 = m1.getFirstRow();
I would like to up my game and start delving into some more Javascript. There are a lot of resources out there like Lynda, CodeSchool etc. Is there an especially good course/resource you would recommend? Especially if some are more pertinent to Javascript use in Skuid.Thanks
Hi,I’ve encountered an issue where some hidden fields are still required, even when they are not rendered. Unhiding and then hiding the fields again seems to resolve the issue in most cases, but sometimes there will be a field or two that will remain required in all cases.The page in question has ~250 fields and lots of rendering conditions to provide some context.Thanks!Kartik
Is there a way to include the curly brackets in a template field, instead of having it try to merge a variable? I actually want the output “{{Text}}” to show to the user, instead of having it look for a merge variable.
Bug report: Settings on Save / Cancel button override settings on stand-alone Save button.Steps to reproduce:Add a pagetitle component Add a Save/Cancel button. In the advanced settings, add a redirect (I’m using /{{Id}}) Add a Save button, without a redirect. Expected result: Clicking the Save button that is part of the Save/Cancel couplet should save and redirect. Clicking the stand-alone Save button should save and leave the user on the same page.Actual result: Clicking either Save button saves the record and redirects to the URL set in the Save/Cancel button.
I’m bulding a case queue similar to the one found in this tutorial…http://help.skuidify.com/m/supercharge-your-ui/l/127596-queueWhenever I click any of the cases in my queue, the page component renders, then I am redirected to the standard Salesforce page. Is there a way to stop the stop this action so that the details will render but I won’t be redirected to the standard page.
The screenshot below shows a field editor with two fields: Id, and Notes__c. The condition on the model is Notes__c != null. Notes__c is a rich text field. Obviously, the model is pulling a bunch of rows with no value in Notes__c. Any idea what I’m doing wrong here?
Hi, I am building a wizard that does an employee appraisal. The first step is to capture who the appriasal is on, and some other high level data about the appraisal. Once I have that, in step1, I want to load a set of appraisal questions based on the employee record identified in the first step. I have tried all kinds of things, including late loading models through javascript, conditions that are turned on and off via a save of the initial condition, and whatever I try simply does not work… Any suggestions on how to do this? Here is the XML for what I’ve done so far… <skuidpage unsavedchangeswarning="yes" showsidebar="false" showheader="true"> <models> <model id="AppraisalInputData" limit="1" query="false" createrowifnonefound="true" sobject="Appraisal__c" doclone="" type="" forview="true"> <fields> <field id="Name"/> <field id="Appraisee__c"/> <field id="Appraisee__r.Name"/> <field id="Owner.Name"/> <field id="Period__c"/> <fie
I am trying to create a “New” Account Page, that shows different fields depending on the record type selected (in the standard page) but even if I select a specific record type it always displays the page as it would look for the default recordtype set on the user’s profile. How do I make it so if they select a record type from the drop down that it remembers this on my custom page. Step 1: Selected Business Account, clicked continue. Step 2: Record Type ID should be Business Account as previously selected but instead defaults to Client Account.
I am generating a URL on global action click and passing some values in parameters which are then used to set default field value on new record (which is skuid page). The field which holds the default value is a lookup field. So I am passing both SF id and SF name in URL parameters so that it shows proper name instead of SF ID. These param values are referred in model conditions to set default field values. Now the issue i think is with the URL encode. If the name is KEVIN O’BRIEN then the generated URL is KEVIN O&amp;#39;BRIEN. The lookup field is not set up properly. It shows KEVIN O which is incorrect. I checked by adding {{#urlDecode}} in the condition but it does not work. Pls help.
I would like to create a send email button on each table row using a default template. How do I go about coding the button?Thank you.
I have created a csv file with all required fields to bulk upload Page Assignments (using the Jitterbit Salesforce DataLoader). This appears to work, however, when I go back to the Skuid UI, the ‘Applies To’ field is blank, even if I specify a valid Salesforce record ID (in this case, I am assigning by user).If I export that updated Page Assignment list, the ‘Applies To’ field does show the correct Salesforce Record ID. It just appears to be an issue with displaying the correct User Name on the UI.Anyone else experience this? I tried to use both the 15 character and 18 character Salesforce record ID but experienced the issue either way.
Open a Popup or even a window from a page with the model being used by a chart so far i have been able to open a new page from a script on the click of one of my charts however i want the page i open to have the same model used for the chart is there a way to do this with a generic page or even popup which show all fields in the visualization or even if i have to manually configure/pass the fields this is as far as i have gotten with my javascript (function(skuid){ ``` var $ = skuid.$; //var myModel = skuid.model.getModel('MyModelId'); //var myComponent = skuid.component.getById('MyComponentUniqueId'); console.log("Chart element: " + document.getElementById("highcharts-4")); console.log(document.getElementById("highcharts-4")); window.onload = function(){ var chart = document.getElementById("highcharts-4"); console.log("Chart element: " + document.getElementById("highcharts-4")); console.log(document.getElementById("highcharts-4")); chart.onclick = function(){ console.log(win
Not sure what I’m doing wrong.
We have a requirement to position button to bottom right corner rather than default position of top right corner. Any Idea?
Anybody got ideas on this?
Is it possible to create cumulative charts with Skuid?Example: Revenue Chart grouped by purchase month, I want January to show January’s revenue and then February to show January + February, etcThanks!
Ok, experts– I have two rich text fields in different objects. We’ll call one is InteractionNote__c on the Interactions object, and the other CaseNotes__c, on the Case object. Interaction is a child of Case. CaseNotes__c is a bulleted list of all of the InteractionNote__c fields from all of the Interactions in the Case. Say that currently Case has three interactions, and CaseNotes__c looks like this: <ul> <li>Note 1</li> <li>Note 2</li> <li>Note 3</li> </ul> I need to write a script that will take the value of InteractionNote__c when a new interaction is saved (call it ‘New Note 4’), and dump it into CaseNotes__c so that the result is: <ul> <li>Note 1</li> <li>Note 2</li> <li>Note 3</li> <li>New Note 4</li> </ul> I think I need some jQuery to find the last and add '<li>' + InteractionNote__c + '</li> before it. Or find the last and add that after it? Or some tri
Hello, Is there a workaround with skuid for the following issue:Conga 8: The report is invalid. Are you using My Domains or matrix style reports? This mesage shows up in the Conga 8 Template Builder. My custom report data does not appear. I don’t have a martix report, but we are using My Domains, i.e. Sim CollegeThank you,Jeanette Shown
I’m having issues with creating a new record when you’re in a detailed page. For example, in a company detailed view, I’d like to be able to “Create New Contact” and have a pop up window that will you create that contact, put the company name and it would add that contact to the company. However, when I create a NewContact model, and add this popup, every contact shows up. I just want a blank, edit create new contact pop up window. Please help.
I have an object whose fields are extremely generic (i.e. Parent.Var01_Label,Parent.Var02_Label and serve as a reference for the records of one of the child objects below it. I create a table using the child object and that child object has loosely coupled fields that I intend to match (i.e. Child.Var01_Value, Child.Var02_Value etc…) So when I am creating my table columns for Child.Var01 I would like to override the label with something akin to {{Parent.Var01_Label}} - Value Screen shot 1 - Table Column Setup imaginecrm Screen shot 2 - Table Column Display (Not displaying the model field token) imaginecrm The problem is I can’t seem to get the model fields tokens to display in the table column even though I am using the field selector for that token. I suspect that even though the field selector is available that it is not functional for individual table columns. (though being able to use a parent in these cases would be nice) Since this is likely a no-go is there a way to use a custom
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.