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
Model with two Ui only formula fields (Field A and B) that use Model_Lookup to different models I then have a third Ui only field (Field C) that is a formula and subtracts B from A. This all works great until the user tries to search the table/model. As soon as it starts searching, it was locking the search bar. I traced this back to the fact it was registering an unsaved change in the model and hence locking the search bar. Solutions:Hitting save/cancel on the table allows the user to continue searching Removing Field C from the model prevents the unsaved changes issue Adding a model action to save the model upon requery (seems to be working, but is constantly saving the model) I’m not sure if its the intended design to have these fields trigger unsaved changes on the model. Saving/canceling does not actually do anything as the formula renders regardless. Right now I’m using solution #3. 2 is not viable as I need the field and 1 is not practical because it interrupts the user as they
Hey everyone, I’m trying to add the Google Maps custom component to my Skuid builder in Bonzai (which is great). I’ve created the Module Picklist value called Maps and I’ve uploaded the MapsBuildersJS.js and MapsJS.js static resources. It seems to be up and running via Sublime Text / Mavensmate for me. What am I missing to make this component appear in my skuid builder?
Hi! I have 3 tabs in a tab set that have one template component in each tab (LeanData, Marketo, and LinkedIn). Everything is pulling correctly, however when our reps click the links in some of those pages, they are not redirected to the correct URL that they normally would if they were in a normal Salesforce page. The links within those pages do not work for the LeanData and Marketo tabs, but do work for LinkedIn. Here is the template for the tabs: LeanData: <iframe src="/apex/LeanData__AccountLayout?Id={{{AccountId}}}&isdtp=vw"width=“100%” height=“600px” frameborder=“0”/> Marketo: Is there a way for these links to operate the same way they would in Salesforce? Thanks!
Hi! I am attempting to create a nested queue for Campaigns and Campaign members where the first queue listed all of the active campaigns, the second queue would display the unique values of the status of the members (we have approx. 3 [invited, attending, responded]), and the third page include would show a table listing all of the members that have the selected unique status. Is there a way to only list those 3 picklist values in the 2nd queue? I know I could do this using a table and filters but I was wondering if this would be possible with a nested queue as well? Thank you!
Hey everyone, looking to see if anyone has been able to customize the New button on the Salesforce1 Recents Account’s view (please see image below, screen #2). We’ve attempted to create a Visualforce page to create a picklist of our account record types (screen #3), then go onto another VF page (screen #4), but we lose all integrity in consistent UI design. Can anyone provide some feedback on the best way to get this done in Skuid? Or if anyone has successfully created a VF page like this?
When I click “Build in lightning” on a new blank desktop page I get the following screen: Any ideas?
When I click on the link “build page in Lighting” the page is loading forever… JS has this error:
I’m having some bizarre issues, that are going to be a pain to re-create, so I thought I’d solicit the community’s input whilst I try to recreate the error!I have a page that ends up creating a parent record and some child records. This child object is a child of two objects; both objects have roll up summaries. One of them itself is a child object of yet another object. There’s other stuff going on as well with Processes built with Process Builder, but you get the idea - the system has a lot to do when these records are saved. They are saved with an action that saves both models and has the “rollback on error” option checked.There’s a managed package in this org that creates triggers based on an admin’s actions, i.e. they are in the org’s namespace. We have some of these triggers on the parent objects I mentioned before.Back to Skuid. We were having issues with this page, getting CPU Limit exceeded messages (this is in the JS console). Debugging what was going on is really difficult (
Just noticed that on an ipad mini my account detail page is only rendering the first tab. The rest of the tabs are just showing up blank. The page is working fine on any computer, and even when I tested it out on the browser on my iphone. So I’m pretty stuck. We are getting some users tablets to have out in the field.
Can’t seem to find the setting to get the background to not be transparent.
I have a Skuid page with a File Upload that attaches the image to a custom object. It works great when I am viewing my page in Salesforce. When I view the page via a Force.com Site, the upload button sort of works but not totally. It does upload the file to the object, but the button does not update to show the newly uploaded file. See video. I have included the Visualforce Page UploadImage in the site as instructed.Any ideas?Tony
Hi,Not sure this is simple or not, but i have a feeling I’m missing something…I’m trying to embed couple different web pages directly into skuid tabsI want my users to not have to click a button , that in turns, pops a new window with “websearch results”Example: I have this button to search the business on google:http://www.google.com/search?q={!Lead.Company},{!Lead.State}Anyone knows how would I have the result of that link show directly in a skuid page?Or worse case have the button show in same skuid page the result of search (not pop a new window or open in same window)Thank you
I have an action with a popup in the Skuid editor. I want to see more of the popup to view more fields and try to expand the the top or bottom the popup by dragging the edges, the screen disappears and reappears at the bottom of the Skuid Editor and the disappears. Banzai Update 5 (7.24) it happens in all browsers.
Is it possible to use the Adopt rows into Model action type in one object and create rows in a different object? (Just to clarify, I’m talking about 2 different salesforce objects, not models)I would like to allow the user to select multiple rows of one object and have it create rows in a different table for a different object. The objects are similar but not the same. I feel like this is not possible because I don’t see how it would know which fields to pass where, but thought I’d put it out there.Thanks.
Been playing around with the highcharts API to show the numbers on top of bars/columns instead of having users hover (see inline snippet below) and so far, this has worked great. The only issue is when using this inline snippet on a UI-Only formula field, it goes all-out with digits. Any ideas? The image below is taken with a UI-Only formula field that has a length of 4 and 2 decimal points. **Here is the formula if it matters: ** IF({{Core_License_Count__c}}<1,0,({{ACV__c}}/{{Core_License_Count__c}})) Here is the inline Snippet var chartObj = arguments[0], $ = skuid.$; $.extend(true, chartObj.plotOptions,{ bar: { dataLabels: { enabled: true, format: "{y}", } } }); $.extend(true, chartObj.plotOptions,{ areaspline: { dataLabels: { enabled: true, format: "{y}", } } }); $.extend(true, chartObj.plotOptions,{ funnel: { dataLabels: { enabled: true, format: "${y} in {point.name}", } } }); $.extend(true, chartObj.plotOptions,{ column: { dataLabels: { enabled: true, format: "${y}", } } });
Hi, We have field renderer on opportunity’s status field. in opportunity data table, if user updates status to declined, we need to show popup with additional fields and also, map send notification field to closedate. popup is created and everythin works well with the exception of notification date being saved to database. here is the popup creation code: var context = arguments[0];if(context.row.StageName==‘Declined’){ if(context.row.Send_Decline_Notification__c === null || context.row.Send_Decline_Notification__c === undefined) { var ManagersView_NewBusinessModel = skuid.model.getModel(‘ManagersView_NewBusiness’); var varContextRow = ManagersView_NewBusinessModel.getRowById(context.row.Id); ManagersView_NewBusinessModel.updateRow(varContextRow,‘Send_Decline_Notification__c’,context.row.CloseDate); } console.log(context.row); //SHOWS VALUE BEING MAPPED TO Send_Decline_Notification__c console.log(ManagersView_NewBusinessModel.getRowById(context.row.Id)); var popupXMLString = ‘’ +‘’ +‘’
We have created a clone Functionality for Campaign and it members as child, Child is not getting cloned, Passed the Campaign ID as the Parameter from the Campaign Clone Model for Member clone
I am using the Skuid Mobile builder. The Filed Renderer I am using is Auto-Complete. When you tap on the magnifying glass icon to the right, it pops up a nice view of the Accounts; however interacting with this pop-up produces nothing – clicking on the Account does not add to the field, the search in the upper-right corner does not work. Help!
Several fields won’t clear their values when I delete the values. They are also not triggering the save/cancel buttons that are set to render when the model has unsaved changes. These fields are set to render if a picklist field has certain values, but even when I disable that rendering they still are acting like this. I’ve never seen anything like this before, any ideas? I’m going to just delete the fields from the model and add back again and see if that helps. I had a similar issue last week with fields not respecting new dependency criteria on the skuid layout until I deleted them from the model and added them back again, so maybe that will help.
I have created a custom object and built a skuid page around that. I am unable to give access to the Skuid page for few users with the same profile. Below is the error message.You’ve been INKED! (Something went wrong)We were unable to find a Skuid Page named (Skuid page name). The Page is either inaccessible or does not exist. If you believe you should be able to view this Skuid Page, ask your System Administrator to check the Sharing Model for the Page object to ensure that you have access to this Skuid Page.I followed the below link and added users to the Skuid Page Buidler and Skuid Page Viewer Permission sets. But still have the above error.http://help.skuidify.com/m/getting-started/l/102645-let-other-users-access-skuid#In-Salesforce-Setup…
I’ve got a custom theme in production that I have updated in a Sandbox. Now I want to replace my production theme with the sandbox version, but not change the name or anything. I really need to import and replace, or replace XML in production. How can I do this?
Is there anyway to get the the details of Conga document like Id,Name ,status and put it in a table salesforce skuid page as a record of an object .
I’ve managed to get Ui-only formula fields to work using aggregations within the same model, but am having trouble pulling in a number from a different model. My goal is to show an an average, by dividing a count from one model by a distinct count from another. I think I should be able to do this with a model_lookup in a Ui-only formula field. Here’s what I have, please let me know if there’s something I am doing wrong, or if I’m running into the limitations of Skuid/salesforce. Thanks in advance for any help!
I am trying to use a Ui-only field in a chart. I can select it as the ‘data field’ in a series on a chart and save it. However, every time I select that series again it defaults to countId. This doesn’t happen with the other series in this chart, which are using regular aggregations. Am I doing something wrong or is this a bug?
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.