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
We have a separate field that our General Ledger syncs with around addresses (our standard Account Billing State/Country will list where the company is HQ’d whereas the other Text field matches where the bill has to be sent; not always the same place as HQ). Our finance team is running into sync issues because they enter bad data. To resolve this, I was hoping I could leverage the standard state/country picklists we’re using elsewhere in SFDC. Any ideas how I could use Skuid to create a faux picklist experience for our finance team?
Hi Skuid team, Do you have an official list of supported browsers? Kind regards, Irvin
Hey team!Currently having a great time exploring the possibilities with the mobile composer. We’re trying to style the query results of a deck in the mobile composer conditionally (the desired outcome is for a different background colour to be set based on the value in one of the fields in the deck).Is there any way to achieve this in the current version?Thank you in advance!Regards, Robin
My grand dashboard design has this nested structure:Analytics page has a tabset with 3 tabs: Client Analytics, Service Analytics and Process Analytics, each of which has a page include.Client Analytics page has a tabset with 3 subtabs: CA01, CA02 and CA03, each of which has a page include.CA01 page has 2 charts and a table CA02 page has 2 charts and a table CA03 page has 2 charts and a table Service Analytics page has a tabset with 3 subtabs: SE01, SE02 and SE03, each of which has a page include.SE01 page has 2 charts and a table SE02 page has 2 charts and a table SE03 page has 2 charts and a table Process Analytics page has a tabset with 3 subtabs: PR01, PR02 and PR03, each of which has a page include.PR01 page has 2 charts and a table PR02 page has 2 charts and a table PR03 page has 2 charts and a table The reason for the nesting is that I want the bottom level included pages to be “widgetised” and independently editable.Broadly speaking, it all works magnificently. But I’m gett
Is there a way to update a page include from a table row action?I really want to use a table, not a queue.
What is the secret to getting table drawers to work with aggregate models? I saw some posts but never a definitive answer just the end results. In my case we have a client object related to a house (each client is assigned to a house). Each client has a contract (a contract object) that lists how many hours we are contracted to work with them. So John has 300 hours per month, Peter has 250 Hours per month and Jimmy has 200 hours per month on the "Contract Object). If John, Peter, and Jimmy all live in the same House (House Object) I am summing their hours so I know how many hours a month, and a week so we can schedule appropriately. I am using an aggregate model based on the “Contract” that groups by Contract__r.Client__r.House__r.Name. If I wanted to show a table drawer where it listed Peter, James and Jimmy’s individual hours can I do that? I have created table drawers before, but are there different steps if the parent model is an aggregate model? Thank you!
Hello!I’ve got a task table on a homepage component and I’m trying to add a row-action popup that has a page include to the opportunity (task’s ‘parent’).Here’s my query in the page include: Id={{{WhatId}}}Lazy load’s off.The condition on the opportunity detail page is good.All I’m getting in the popup is the Salesforce header with the home tab selected.I’ve tried doing a similar thing in a normal page (i.e. not in a homepage component) and it also doesn’t work. So I’m guessing it’s something to do with the WhatId?Any thoughts?Cheers!
So i am trying to use a custom field renderer to popup a skuid popup with details from the field this is what i have got so far i keep getting an error saying that i have an unexpected identifier Uncaught SyntaxError: Unexpected identifier with this error in the VM skuid.utils.createPopupFromPopupXML('',[object Object]).open(); Heres the code var field = arguments[0], $ = skuid.$; var popupXMLString =''' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + ''
Has anyone found a way to make some kind of timeline that shows past to present with markers for records along the way? I would like to include cases (specific record types), events, tasks, custom object records in this timeline. I have seen some Javascript components out there but curious how or if anyone has built something within a skuid page using a timeline?
Is there a simple way to add custom css to a Column Summary? Basically I’d like to Bold the area in red below.Also, can I select specific Column Summaries to be bolded using CSS, or should it be done for the Table Footer as a whole?I’m hoping there is some straight-forward CSS for this, but I’ve had no luck on my own.
I am creating a quick page to add contacts to accounts. However, I am trying to add account name field as a lookup field - but the only option that adds to the table is a string. Help!
Hi - I’m having trouble pre-populating a lookup field on a skuidified version of a “New Record” page.I can accomplish if I do not override the new record page, as seen here: I am using the following to redirect from a table row: https://na12.salesforce.com/a4s/e?CF00NU0000004jAzH={{Name}}&CF00NU0000004jAzH_lkid={{Id}}But when I override the “New” action with my Skuidified page, the Project field does not pre-populate:What am I doing wrong?
I am evaluating skuid to improve UI development for a managed package. As part of this effort, I am recreating a custom vfPage with squid components but now I need to develop a couple custom components. I created a “KPIChartBuilder” module by following these instructions http://help.skuidify.com/m/11720/l/129358?data-resolve-url=true&data-manual-id=11720 and then created a KPIChartBuilderJS component by following method A in these instructions http://help.skuidify.com/m/11720/l/129359?data-resolve-url=true&data-manual-id=11720 but my component does not show up in the ‘Components’ tab of the Skuid Page Builder. Any help would be very much appreciated. Thanks a lot, Jason.
Looking for a way to reorder the event sources, so the selection looks better / is better ordered.Scott
Hi,I am working with a data table and a calendar and would like everything to refresh, no matter what I change or add or delete from either the calendar or the table. Is there a way to get set this up?Scott
Here is my setup:Here is my chart:Notice that the max value on the Rate axis is 1.5, not 1. If I check “Integers Only”, I get a Rate axis that goes from 0 to 3.It may be important to note that I’m using this before render snippet to create the series which uses the Rate axis (thanks, Moshe!): var chartObj = arguments[0], $ = skuid.$,<br>Appts = chartObj.series[0].data,<br>&nbsp; &nbsp; Comp = chartObj.series[1].data,<br>&nbsp; &nbsp; Shows = [];&nbsp;<br>for (var i = 0; i &lt; Appts.length; i++){<br>&nbsp; &nbsp; Shows.push(Comp[i] / Appts[i]);<br>}<br>var newSeries = {<br>&nbsp; &nbsp; name: 'Show Rate',<br>&nbsp; &nbsp; data: Shows,<br>&nbsp; &nbsp; type: 'line',<br>&nbsp; &nbsp; yAxis: 'rateaxis'<br>};<br>var n = chartObj.series.length;<br>chartObj.series[n] = newSeries; When I check the chartObj in the console, the max is still set to
I’m building a page and encountered some strangeness with Models, and have isolated the problem in a demo page. I’ll try and add the XML for this page into this post - if it doesn’t work, I’ll host elsewhere and link in the comments. It should work in any vanilla org with Accounts and Contacts. There are two models - Account and Contacts. The idea is you can create an Account and Contacts for that account at the same time. As it’s a demo page, it’s a little weird, but essentially you enter an Account name at the top, then enter Contact email addresses in a table underneath. A button at the top Saves the Account first, then Contacts. The Contacts model has a condition that sets the LastName field to the value from the Account Name - weird, but this is for demo purposes, so please bear with me 🙂 The idea here is that when saving the Contacts, the Account name should get pulled in and put into each Contact’s Last Name. This should be similar in principle to how I can link newly created C
I have a skuid page that has a button that launches a popup and within the popup I have a template component that has a visualforce page in it that does a ton of custom merge document wizard faxing and stuff and when it’s completed I want the skuid popup to close. How can I from within my visualforce page/controller close the skuid popup and possibly requery a model as well?
I had a few generic question regarding Skuid respecting the Object/field level settings on the Salesforce data model. We are trying to re-model our standard Salesforce pages by leveraging the handy features Skuid offers.1. If my Salesforce object has a field which is required (on the object level) do I explicitly need to set it as 'Required' on the field properties on my Skuid page? If I choose not to display the field on my Skuid page, will I be able to save my record or will I get an error2. For Lookup/Reference fields with lookup filters already set up on the Salesforce field, does that not automatically port over to Skuid? Do I have to go in my Skuid page and replicate all lookup filters?
When displaying one of our pages, a background image displays behind the App Toolbar selector. This only seems to occur in Chrome. Any ideas what would be causing this?
I need to be able to view a full, multi-page PDF document in a browser. It needs to be included among other fields and cannot have a scroll bar (exclusive to the PDF). Basically, what I need it to create a PRINT page that incorporates all record data, PDF’s and images. I’m using a Template field and I can get the correct PDF’s to appear, but they have scroll bars that prevent accurate printing (see image). Anyone have any thoughts on this - or maybe a better way to create a PRINT view page?
I’ve encountered a bug with the new table scrolling features. When I check the checkbox to “Allow Scrollbars” for a table within a popup, the pagination bar is not visible if the # of records fits on one page. If there are more than one page of results, the pagination bar shows at the top of the table like :For both situations, refreshing the table in some way fixes the issue (sorting,searching,changing pages, etc) and the bar moves to the bottom of the table.Thanks!Kartik
When you have more than few tabs in a popup they are not aligned in a single column. Instead, it show up uneven in two columns:https://www.dropbox.com/s/ezj05nnd7cwm63q/Screenshot%202015-02-04%2009.54.37.png?dl=0
I’m trying to create a button that will open a new browser tab with the record currently being displayed in the original tab. I have the button and the action is set to “Redirect to URL”. I created a new page and a new model for the new tab. I need to somehow pass the record along. Can this be done?
Hi, we’ve created a model that takes multiple actions:1. Update a field2. Save model And it doesn’t seem to always work. I’ve ran a report on it and some contacts have the value updated and many don’t. How should I go and troubleshoot this?
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.