Learn about the latest Nintex capabilities at New at Nintex
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Anyone ever had any issues upgrading to the new version? Other than new bugs of course.
K. I’ve much of what I’m looking in pieces here and there. I have the HTML to trigger a skype call and open a new tab into standard SF logging. {{{Office_Phone__cPhone}}} I also want to incorporate a popup after clicking the phone number based on this post.https://community.skuid.com/t/trigger-popup-from-javascript Lastly, I’d like to have custom field renderer for the href link and to display a skype symbol next to the phone number. Problem is that I don’t know javascript. Can anyone assist in creating the custom field renderer and/or calling the popup? Once the code is done, I generally can tweak it to me requirements.
A question came by email this week that merits broader distribution. I have a date/time field. Is there a method to show it as date only on one of my screens?Good question. Here’s a step by step guide. Step 1. Drag your date or datetime field into your Skuid page. - Change the Field Renderer type to “Custom (run a Snippet)”- Give the Snippet a name. I used “DateOnly” We’ll use that name in step 2 Step 2. Create a Javascript Resource. Open the Resources tab and add a Javascript Item. - The Resource Location should be "In-Line (Snippet). - The Name should match what you used in step 1. The body of the Snippet is as follows: var $ = skuid.$;var field = arguments[0];<br>var value = arguments[1];<br>var jsdate = new Date();<br>//use skuid util to change SF date to JS date<br>jsdate = skuid.time.parseSFDate(value);<br>if (field.mode === 'read') {&nbsp;<br>//uses jQuery UI Datepicker.formatDate tools<br>skuid.ui.fieldRenderers.TEXT[fiel
Couldn’t figure what the heck was going in my action framework with some merge data. Wanted to see what data was being create within the framework whilst still keeping rollback enabled for save model actions.Added the merge data to the message. Simple little thing.
In my Opportunity Skuid page, I have tabs both for Chatter and for Attachments. In the standard SFDC layout, Feed Attachments (includes “Select a file from Salesforce” and “Upload a file from your computer”) are displayed in the “Notes and Attachments” Related List, along with regular attachments/notes. For our SFDC we enabled Notes and Attachments to now be “Google Docs, Notes and Attachments”, and the type of document is either an Attachment, or a Feed Attachment (I believe Google Doc is another type).Essentially, all of our users can only see regular Attachments in Skuid and not Feed Attachments. We know that they can be found through the Chatter tab, but this is highly impractical as there can be tons of other clutter from the Chatter Feed. This is a big deal right now as many of our closed-won opportunities have contract details that are of type Feed Attachment, making things very difficult for post-sales support and renewal opportunities.I looked for similar discussions but didn’
Hey,We have a requirement to export all records in a model - not just the subset that is initially loaded (our max # records is 250, but the object has thousands of records).I tried to write some javascript code that would remove the records limit and requery the model. However, I’m encountering errors because the message size returned is larger than 6mb.Do you have any suggestions on ways to circumvent this limitation?Thanks!Kartik Sethuraman
I’m looking to create a table for the CombinedAttachments of a record. My issue is that you are only able to get to this object by using a nested query on the parent object. If this was not the case I would have just created a model for CombinedAttachments but as is, I can only get to this object by using a child relationship on the parent model.Is there any way for me to create a table component using the child relationship as a model? I image someone must have created a table to mimic Salesforce’s standard Notes and Attachments table.
I’d like to adjust the color of 2 different “columns” in a table using CSS. The table has 8 or so columns. How do I identify only those 2 columns?
Hi,My products have the internet speed on it which is setted in two fields: quantity and unit (to make 100MB, 90Kb,…) and I have a formula field with the speed in bytes calculated. Something like this:Quantity Unit bytes 100 Mb 100000000 90 kb 90000In the table I have created a template field with {{Quantity}}{{Unit}} with allow ordering true and Order Field ‘bytes’But in the table the ^v Arrows does not appear in the column to order.
Thought I’d post this here as a few people have expressed wanting the ability to let users set the order of rows without javascript.
I have created a wizard to create new contacts, I was able to create link address fields from the parent account account with the contact. The issue I am having is when I change the account name the address does not change. Does anyone knows how to fix this?
I am really digging all of the new conditional rendering options. Wondering if it is possible to render a component based on the sum of a field in an aggregate model?ie) Render if the total hours from all the timecards in this aggregate model < 10
I have a custom “Account Rep” object that is a child of the “Account” object. When an opportunity is entered under this account, I am trying (unsuccessfully) to iterate over the rows in the “Account Rep” object to add these reps to another custom object (commissions) that is a child of the opportunity object.I tried to steal code from the “mass create records” example and my modifications are still lacking. Specifically, I am having issues copying the owner id from one model to the other and I don’t know how to iterate through the rows.My first model is called “Reps” and I want to copy the following fields:OwnerRate1__cRate2__cRate3__cTo the model called “Commissions”. Let’s just say the field names are the same.
Is there a way to identify all checkboxes for field editors in CSS? Basically, I want to be able to lock the checkboxes to always display the box beside the label (display: -webkit-inline-box;) regardless of the style of other items in the field editor. It appears that I need to edit the .nx-basicfieldeditor-item element, but I’m not certain of the syntax for only adjusting checkboxes. Can this be done?
All icons on page are not showing. Only shows a square box for all icons. We use the “paper” theme but it happens on all themes. We tried in Chrome and Firefox, also on Mac and PC. Only browser that does show icons is inside salesforce1 app it shows the icons.There is no custom css,lables, or jscript. It happens on all our pages.
Is it possible to conditionally display a deck or field on a mobile page?
I have a grid of account records and an action on the wrapper component to set the main panel to another mobile page. Within Salesforce1 app, if I tap on the grey space around the name of the account record name it works correctly, if I tap directly on the name of the account record it takes me to the Salesforce 1 account detail view. If I hit back I end up at the desired page. Same behavior occurs in preview mode, tap directly on the name of the account record and it takes me to the account detail view.What am I doing wrong? I can’t find any where where this behavior is set to occur.Action set in wrapper component below:
In order to help ease the transition from Salesforce standard to Skuid, I would like to know if anyone has a template for the Salesforce Service Cloud Console look, but with Skuid capability? I’ve attached a screen shot of the view we would like to start with, but with us adding additional capabilities of Skuid. I’ve looked through the templates on this site and searched both Deep Dives and conversations and haven’t found one that would closely mimic the Salesforce look.From the screen shot below you can see that we use use Queues (‘A LOT’) where the list of available/unassigned cases are in the top pane, with Case detail below and the next higher level of information (Asset or Account, depending on what’s in the detail pane) in the right pane. If you know of something that you could point me to for viewing or copying, I would greatly appreciate it.
I started getting this Error when I try to schedule an appointment in the Calendar, and the calendar doesn’t popup.I know that it is kind of vague, but I am wondering if its something known.I’ve restored previous version that I know were working and I still get the error. I started getting the error last night.Any ideas? Thanks
Having a similar case to :https://community.skuid.com/t/model-in-model-in-model-value post…I have a Table of Opportunities with a drawer of LineItems. This part works great.Here’s where it gets tricky:I have a custom object called Contract Users that has a lookup to Contacts. I have a lookup on the LineItem looking to the Contract User.What I need to do is produce a pop up that generates Contact fields from the LineItem row. My Context for the PopUp on the LineItem table row action is the Id = Seat_Holder__r.ContactID__c (have also tried pointing to the Contact__c field which is the Id).Line Item->Contract User->Contact and need Contact fields showing in a pop up.What am I doing wrong? The image below shows it’s grabbing the ContactId - I’m just missing the correct context for the pop up:
I’ve been hacking away at a snippet for a little while now to try and add a default date value when a new row in a model is created. Currently this is done using the actions framework, with a value of ‘TODAY’.What I really need is for this date to be the same as the date in the row which was previously created. So…if row 1 contains a dateTime of 27 Oct etc, then row 2 needs to have that date. If row 3 has 29 Oct, then row 4 also needs to have 29 Oct.A couple of thoughts:Is it possible to access the ‘last’ row in the model? There is a function for getFirstRow() but is there a getLastRow() or equivalent?Is it possible to count the number of rows, ie .length, and then subtract 1 and get that specific row?My incomplete snippet is pasted below if anyone can assist. Thanks a lot. var $ = skuid.$,params = arguments[0],model = skuid.model.getModel('Sectors');<br>//var prevSector = 0;<br>var sectorCount = model.data.length;<br>//get last row in model<br>var row = sector
I’m trying to build a mobile page with a Case List and related Case Details, but cannot get the detail page to display any data. I watched and followed the steps from the Mobile deep dive video, but can’t get this working. The case list displays cases, but my details page is always blank.video showing my configuration - http://www.screencast.com/t/rVk4KzLb
Hey Team Skuid, I have a meaty one for you. :) We have a Skuid page within a Visualforce page that displays full screen in Salesforce (no standard headers or sidebar). The Skuid page has a top nav bar, then panel set below consisting of a fixed left panel and a fluid right panel. The right panel has a tabset in it with ten tabs and a vertical nav bar (the strip of icons). Each tab has quite heavy content and the page is bigger than we want (about 6500 lines of XML). We've taken steps to improve page load performance by using Javascript to load models on demand (quite effective) and setting the Visualforce page cache to true (great for speed, but causes problems because it caches Skuid content, which requires more working around). We think the best idea is to split the page up into ten Visualforce and Skuid pages, one each per tab. This will give us faster initial page load (although it'll be slower to move from "tab" to "tab") and will also give us distinct URLs per tab, which is a p
Quick note that I’m within a dev org.
Hi, I’m creating a page with a Date Range filter, as well as 4 toggle buttons (current week, previous week, current month, previous month). These row filters correspond with 6 conditions on the model - one for each toggle button and 2 for the date range filter. Each toggle button activates its condition, and deactivates all the others. Everything works as expected, until you click on an active toggle button to deactivate it. At that point the skuid page freezes (shows “Applying Filters”). If cookies are enabled for the toggle filters, then the page will not load again until the cookies are deleted. The following error shows up in the console which seems to be causing this issue: Thanks, Kartik
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.