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
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?
I have skuid model displayed in table and also it has Table filter…How to run the script after Table filter selected before data is populated in the table. I am trying to remove some of the data from model before table is populated based on another object data. The same I have done using on On page load,using function(skuid) {… }Pls share the inputs
I am just getting started with SKUID, and am mostly involved in helping the project SKUID team with SFDC security model issues. The team wanted to conditionally render a button and based on their description of what they wanted I recommended something like the SOQL below:SELECT RecordId, HasReadAccess, HasTransferAccess, MaxAccessLevelFROM UserRecordAccess WHERE UserId = ‘005J0000002Wc99’ AND RecordId = ‘001J000001VLJe2IAH’The team tried the above SOQL and said that it didn’t work because “in Skuid by default the “Id” field is getting populated in the select query and because of that we are getting error.” I take this to mean that SKUID is automagically adding the ID field to the query. This is a problem since there is not an ID field in the UserRecordAccess object.Does this description make sense? And if it does is there a workaround?Thanks!
Is there a way to limit the type of file a user can upload? I only want PDF files to be allowed…
Is there a Left Function equivalent for a template box? I only want to show the first 20 characters of a certain field while including additional characters from other fields.
I am trying to create horizontal menus, which change to vertical menus for smaller size views. Grids and Divisions will adjust only some menus to the next line leaving more than one menu on the first line. Is there any other way? I tried using smart menu plugin and it does not work.
I often set default values in Javascript. This will usually be via a page load snippet, which will update the fields to the predefined values. I’m running into an issue with lookup fields where if I update a lookup field, the field shows the Id value “a0234128792132” instead of “Bob Jones”. I can’t figure out how to get it to display the name value. Is there a way to do this?
Hi All,I am having one issue. I have created one page in skuid before week. I had defined model ,component and everything for that. That page was working fine but when I have updated superbank 6.8.1. I found some issues. When I am opening that page for edit its look like ( 1 ) and when I am preview it looks like second URL. Both URL are provided below. 1) https://docs.google.com/a/zymr.com/file/d/0BzwLYE5K_ApZU21GNGlzSDIxNDA/edit 2)https://docs.google.com/a/zymr.com/file/d/0BzwLYE5K_ApZc3NQSUFvbFp0R2s/edit Because of new update I cannot edit some skuid pages. Need your help in this.
I made edits to the rendering of certain components to the page and kept reversing the page to previous versions but ultimately had to copy and paste the entire XML body of code from a sandbox account into my environment to correct the edits made to the page - why is that?
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.