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
Hi,I want to automatically create a sharing rule as part of a button click with the sharing target determined from the data in a record.I am wondering whether this can be done by creating a model on the *__Share object and inserting the appropriate record, perhaps via Javascript of the Action Framework?Does anyone have any experience of this? I could try an Apex trigger but I’d rather do it in Skuid if possible.ThanksBrad
Hi - we have a dynamic SKUID dashboard with a snippet refreshing the page every 5 minutes. We would like to show the current time at each refresh - something like ‘Last Updated : xxxxxxx’.I tried by adding a template at top of the page, with the following in the HTML:Last Updated : {{$System.Now}}but that didn’t work. I have checked through the listed merge variables:http://help.skuidify.com/m/11720/l/187263-global-merge-variables-functionsbut don’t see System listed. Any ideas as to how to pull in the date & time ?
Is there a way to pass a string to a table’s search bar when the table renders?
So we have a field editor layout, with the Save/Cancel buttons, then we have a custom button called Create Legal that sits in the Page Title Section. Problem is, we want the buttons altogether as now the Save/Cancel is left and the custom button is right and up. Thanks for assistance.
I’m running the following script. Somewhere in the middle of that, it’s triggering this function in main.js: And it loops and loops over lines 19531-19534 (doesn’t seem to ever reach 19535). Here’s my code: var mA = skuid.$M('Open'), rA = mA.getFirstRow(), $ = skuid.$; //Check for related caller info $.blockUI({ message: 'Checking for Caller other than Patient...' }); console.log('Checking for Caller other than Patient.'); if (rA.Caller\_Other\_Than\_Patient && rA.Caller\_First\_Name\_\_c) { console.log('Adding Caller other than Patient as Related Person.'); var dfd = new $.Deferred(), mR = skuid.$M('Related'), fullName = rA.Caller\_First\_Name\_\_c + ' ' + rA.Caller\_Last\_Name\_\_c; //Check if row for caller already exists (if so, update that row) var exists = false; $.each(mR.data, function(i,row){ if (row.Name == fullName) { exists = true; mR.updateRow(row,{ Relationship\_to\_Patient\
I have been trying to change the bottom border color of buttons with no success. It is the green (#0097a7) color that shows on the bottom of some active and inactive buttons. I have inspected the element in chrome and changed the class in my css but that pesky green stays. I would love to banish that green from every where! I have tried all different types of combinations but nothing changes the color once it is my css style sheet. Thank you!This is the green I am trying to get rid of this. Here is the css for the default button:.ui-widget-content .ui-button.ui-state-default { border-bottom-color: #f2f2;}Here is the css for the active button:.ui-button .ui-state-hover .ui-state-active { color: #0087B8;}
Hello!I’m using javascript to populate a url and I need to replicate {!$Api.Partner_Server_URL_160} using a snippet.I’ve been using sforce.connection.partnerServerUrl in the snippet but this doesn’t specify the version (16).Any thoughts? Cheers!Louis
I have built an Account detail page and when I click the ‘Preview’ button, I get a blank screen. Extras: I don’t have pop-up blockers on; we are on Person Accounts; I followed the directions… 🙂
Check my code.It is working fine in page but when i am using same page in popup with page include at that time below code is not working. Agcontact.setCondition(FirstNamecondition,Firstname,true);skuid.model.updateData([Agcontact]);Agcontact.load();Please help me as soon as possible.----------------- var params = arguments[0], step = params.step, stepEditor = step.editor, $ = skuid.$; stepEditor.clearMessages(); var contactModel=skuid.model.getModel(“AddContact”); var raw=contactModel.getFirstRow(); var Firstname=raw.FirstName; var Middlename=raw.MiddleName; var LastName=raw.LastName; var Birthdate=raw.Birthdate; var Name=‘’; if(Firstname!==undefined) { Name+=Firstname; } if(Middlename!==undefined) { Name+=’ ‘+Middlename; } if(LastName!==undefined) { Name+=’ ‘+LastName; } var models = [ skuid.model.getModel(“Candidate”), skuid.model.getModel(“AddContact”) ];
What is the intended outcome when setting “No Row In Source Model” to “Abort this Model’s Query” on a child relationship field’s condition in a model? My specific situation: I have a condition set on a child relationship where the source model contains only a single row that has not yet been saved…so, when I had “No Row In Source Model” set to “Deactivate this Condition,” the condition would be deactivated and all existing child records would be shown.So, I had assumed that setting this to “Abort this Model’s Query” might just abort the query for the child relationship…but in practice, it aborts the entire model’s query. (which, given that a child relationship here isn’t actually a model, the wording does makes sense…).My hope had been that it would abort the child relationship query & then after the source model’s record was saved I could requery to get related child records.Maybe there’s another way to go about this, and I am certainly open to suggestions! But, I’ll settle with g
Here is a scenario which i have not been able to put a logic for.display set of records from object A where logged in user is owner and record is created in last 90 daysORdisplay set of records from object A where record created in last 90 days and logged in user is member of its child object record Bnow there is a possibility that logged in user is owner as well as member in object B. somehow, all the permutations and combinations fails to fetch correct data. either no row is returned or if i disable one of the condition, then incomplete dataset is returned. any suggestions will be appreciated.
I start with an empty model. I create a row. I save the model. Then when I use getFirstRow(), it returns undefined. It looks like mC.data.length = 0, even after I’ve created a row and saved. What am I doing wrong here?I tried re-setting the value for the model variable (mC) after the save, but it still shows data.length = 0.Here’s my code: // Schedule -- new case&nbsp;&nbsp;<br>&nbsp; var //mP = skuid.$M('Patient'),<br>&nbsp; &nbsp; mC = skuid.$M('Case'),<br>&nbsp; mA = skuid.$M('Open'),<br>&nbsp; rA = mA.getFirstRow(),<br>&nbsp; $ = skuid.$,<br>&nbsp; dfd = new $.Deferred();<br>&nbsp;&nbsp;<br>&nbsp; //Create Patient Case<br>&nbsp; $.blockUI({<br>&nbsp; &nbsp; &nbsp;message: 'Creating Patient Case...'<br>&nbsp; });<br>&nbsp;&nbsp;<br>&nbsp; mC.createRow({ <br>&nbsp; additionalConditions:[<br>&nbsp; {field: 'Ca
I am having a “form(new page)” which contains fields like name,email, address, account(lookup), opportunity lookup,campaigns(lookup), a section contains custom fields of another object1 which contains name, date, … fields.If i click on “submit” button –> It must create an contact(contact must relate to account selected)–> By using object1 fields it must create a record(using name, date, … fields) which is seen in related list of contact.–> In contact relatist list i must see campaign selected.How can i achieve this without using snippet
We have been using Skuid with Salesforce Communities for a year or so now, quite successfully. We are now deploying two new Salesforce Communities, and are now encountering an odd, inconsistent behavior (though thankfully it is 100% reproducable). If you go navigate to one of the two new communities directly from Salesforce (using the menu on the upper left), you get a VisualForce error. But if you first go to our original community, and then navigate to the new communities, it works perfectly. I’ll try to describe this both in text/images as well as a video of the problem hoping that somebody can help figure this one out! I’m logged in as a Salesforce Administrator … and since the pages do work when accessed in the correct order, I’m doubtful this is a permissions problem but with Salesforce you never know for sure…! But as you will see, the fact that it always works for one community and is inconsistent for the others makes me wonder if this is still a permissions/community config
I must be doing something damn stupid here, but whatever I try I cannot get this to work. I have a parent page which has a page include in it. The XML snippet is here: </template> <includepanel type="skuid" pagename="ViewEditAppraisal" module="" querystring="suppress_title=1&amp;amp;appid={{$Model.Appraisal.data.0.Id}}" lazyload="true"> <renderconditions logictype="and"/> </includepanel> I am passing a URL parameter called “suppress_title” and giving it a 1. This drives a Render condition on the included page (which works fine when I load the page directly in the browser), but refuses to work through the page include!! What am I doing wrong? Here is the relevant bit of XML for the included page. Incidentally, the {{}} parameter passes and works fine, it’s on the static (hardcoded) one that doesn’t work. <pagetitle model="VAppraisal"> <maintitle>{{Appraisee__r.Name}}</maintitle> <subtitle>Appraisal Summary: {{Name}}</subtitle>
We have reviewed the article called “Using Skuid with the Service Cloud Console” and seems simple enough except that the code in the image in Step does not match the sytax explained in Step 1. They are different. Since we are trying to replace the detail page, we skipped down to the Details Page Tabs and tried to use the code “above” as required and replaced “tab” with “view”. We created the VF pages as follows, first based on the image on the tutorial: showHeader=“true” sidebar=“false” standardStylesheets=“false” showChat=“false” action=“{!IF(canUseSkuid,‘’,redirect)}” title=“{!$ObjectType.County_Record__c.labelPlural}” readonly=“true” docType=“html-5.0”> Then based on the sytax provided on the tutorial: showHeader=“true” sidebar=“false” showChat=“false” title=“{!$ObjectType.County_Record__ c.labelPlural}” readonly=“true” docType=“html-5.0”> In neither case above does the page show up as available to replace the View Link, so we searched the community some more and found th
I’m having an issue with a drawer button. I’d like to be able to log a call or just any task really related to a contact in a drawer.A brief overview of how it’s setup. The main object is a custom object called registration and opening up the drawer it queries the related contact and displays some contact fields. I’d like to be able to log a task or a call using a button that will auto-fill and auto-relate the call to the contact. I’ve used this tutorial properly to get the appropriate contact info to display in the drawer here http://help.skuidify.com/m/components/l/269735-add-nested-rows-to-your-table-with-drawers.But I can’t seem to transfer the queried contact to the Create a Task object. I just can’t figure out.Any thoughts?
I have some builder code that creates a custom component, and I have an input type of “field”. For some reason the field picker displays, but is always empty. Here is my code: builder.registerBuilder(new builder.Builder({ id : 'trafficlight', name : 'Traffic Light', icon : 'ui-silk-sport-8ball', description : 'Custom component to compare this field against another', hideFromComponentsList : false, isJSCreateable: true, componentRenderer : function(component) { component.header.text('Traffic Light'); }, propertiesRenderer : function(propertiesObj,component) { propertiesObj.setHeaderText('Traffic Light'); var propsList = [{ id : 'thismodel', type : 'model', label : 'The Model that has the fields' },{ id : 'thisfield', type : 'field', label : 'The starting field' },{ id : 'comparefield', type : 'field', label : 'The field to compare against' } ]; propertiesObj.body.append(skuid.builder.buildPropsEditor(component.state,propsList)); }, defaultStateGenerator : function(){ return skuid.utils.
I have a page full of reports that I would like a user to be abel to print or save as a pdf. The issue is setting every section to it’s own page. I came accross this plugin and wanted to see if anyone has had any success or if what I need can only be achieved via CSS. Thank you!Has anyone had any success using this JQuery plugin? https://github.com/ianoxley/jqueryprintpage#readme
I am displaying multiple users on a single calendar and given the volume the query could take some time to display. On initial load I can control the first query and display a wait message to the user so they don’t think the screen is locked up or not working. Is there a way to hook into an event that is triggered when the calendar does a re-query so that I can display a wait message?
Has anyone else seen this? Is there a workaround to this behaviour?
How do I check if an item exists in a list?I upload a file in the event form and then get the file name from JSON The file name is stored as currentFileName Next I query the SharePoint Online list that I plan on uploading the file to. All records are returned from the query of the SPO list/document library. The query is stored as colSpo I check if an item exists, and it never returns true, but on my test, I have a file with a file name that I am trying to upload that is already in the list. Any idea why it evaluates to true?Here is my process and my check if item exists in collection configuration:
We are trying to leverage Skuid pages for dashboards/reports/data visualization:1) We would like to know exciting ideas/working examples on this topic.2) We have a Skuid page with different types of charts, tables etc each driven by different skuid models (but from same SF object as of now). I would like to have a filters at the top of page which are applicable for all the components on page. Please let me know a better way of doing this.3) Here is what we have done so far. We have a table with model (We call it as a master model) where we have added filters. Currently, we are trying with multi-select filter. We have other tables/charts with different models. One of the condition on each of these models is: Name is in the set of Name values returned by Master Model. The condition source is ‘Field from another Model’ and is set as ‘Filterable default off’. I am re-querying these models when the filter is applied on the master table. This is configured in action framework. When master mo
Here’s my code. var model = arguments[0].model,&nbsp; &nbsp; row = arguments[0].row;<br>var mA = skuid.$M('AllAppointments');<br>mA.createRow({additionalConditions:[<br>&nbsp; &nbsp; &nbsp; &nbsp; {field: 'Start__c', value: row.Start__c},<br>&nbsp; &nbsp; &nbsp; &nbsp; {field: 'End__c', value: row.End__c},<br>&nbsp; &nbsp; &nbsp; &nbsp; {field: 'Room__c', value: row.Room__c}<br>&nbsp; &nbsp; ]});<br>&nbsp; &nbsp;&nbsp;<br>model.deleteRow(row);<br>mA.save();<br>mA.setCondition(mA.getConditionByName('ThisOne'), mA.getFirstRow().Id);<br>mA.updateData(); I’m getting the error, ‘uncaught model’ on the AllAppoitments model. It looks like the save doesn’t complete before the update is attempted. How do I handle that properly?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.