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’ve had this problem most of the time we unpack Page Pack Modules. Only other answers I see here were an upgrade to Skuid a few months ago but we are on the latest version.When we unpack Page Pack modules in some of our customer orgs that have the pages that already exist we get “duplicate value found Skuid…” with the Unique Id of the pages. In these cases it is not updating the pages with the most current version.I cannot post a screenshot as the message disappears when the browser is back in focus.
Has anyone implemented a dark theme for a skuid page (dark background, light colored text, etc.)? Any css tips on how to accomplish that?
Hi, I have a picklist field in a template, and I want to add options dynamically to this picklist. how could I achieve this? --None-- note : I think I cannot use picklistEntries as I use a SKUID template and which contains pure HTML stuff? Thanks and appreciate your help.
Is there a way to show users how many items they’ve selected in a list? e.g. at the top of the list, show a template field that displays something like “list.selectedItems.length()”? e.g.Essentially we want to show users how many items they’ve chosen before performing a mass action.
Hello! I’m using a condition on my model that uses a subquery to specify which records I’m pulling. For the subcondition I am trying to use the ‘LIKE’ operator, but I get a malformed query error. Here are some screenshots: Any advice would be appreciated, thanks!
Here’s my apex code, copied from the Account redirect page which works fine: <apex:page standardController=“Opportunity” action=“{!redirect}&actiontype=View&objecttype=Opportunity” extensions=“skuid.Redirects”/> It’s not a page assignment issue, it just doesn’t even try to do any kind of redirection when you look at an opportunity. Like for Accounts we see in the URL: /001E000001BBgso?nooverride=1&sfdc.override=1 But for opportunities it’s still just /006E000000WHJq7
Failed to parse XML due to: in epilog non whitespace content is not allowed but got t (position: END_TAG seen …t… @360:33182)It’s my own fault I believe - I had one page open on two tabs and made a bunch of edits in one, then a couple edits in the other. Then some more edits in the first. Help! Is there some way to access the XML? I can’t even open the page for editing.
I have built a toggle filter on a table on a field entitled “Buyer”. “Buyer” is a lookup to the user object. I want to show when the running user Id is in the buyer field and when the field is blank. the goal is when filter is enabled it will show the running user records and the blank records. The conditions on the model:1st condition: Buyer field is = running user id, default off filterable2nd condition: Buyer field is = blank, default off filterableToggle Conditions: Activate the two above conditionsWhen I add one condition to the toggle filter it works. When I add both filters it breaks. Has anyone run into this?
I’ve got a mobile page for creating an Opportunity. The opportunity requires a Name and a Stage… We have workflow rules to set the Name and the Stage will always be Prospecting for this mobile page. So, I want to hide those three fields from the user.To do that, I set conditions on my NewOpportunity model. This works great when I preview the page in Chrome. This doesn’t work after adding to a VF Tab in Salesforce 1, I get an error for missing required fields Name and Stage.
we have a java script in field on a table. In this Field we are displaying different fields based on some pick list values.Before It was working fine . when ever we tried to edit the this field its becoming readonly after editing it which was not happening before. Please find the code below : var $ = skuid.$, model = arguments[0].model, row = arguments[0].row , element = arguments[0].element; var valueType = model.getFieldValue( row , ‘Data_Type__c’ ); function renderField( fieldName,defaultValue ){ var field = new skuid.ui.Field( row, model, null, { fieldId: fieldName, register: true } ), value = model.getFieldValue( row , fieldName ) ||defaultValue; console.log( field, value ); if(field && field.metadata && field.metadata.displaytype ){//skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode]( field, value ); console.log( fieldName + ’ rendered!', field.element ); skuid.ui.fieldRenderers[field.metadata.displaytype].edit( field, value ); } return field.eleme
Creating our first mobile page (woo-hoo!) which is a page for someone to use in the field to capture a new loan prospect. The page will create a new Opportunity, a new Account, and a new join object to link the Opp and Account together. After filling out basic Opp info like Amount and Close date, we want the user to be able to type in the new potential borrower’s name and have that initiate a search in the database, like auto-fill. And if none found it creates a new one. I don’t think this is exactly possible, but are there any ideas for elegant solutions here?Two not so elegant that I’ve thought of:1) allow the Deck where the new account fields are to have a Search function, but since my model is set to not load model data on page load, search doesn’t seem to be working, in fact it freezes up completely when I try and search2) install some de-dupe something on the back-end so that when they create a new account that already exists it merges the two. Besides being a lot of work, this d
So I have been working on a page all morning and after a slight adjustment I saved my work to preview it (been doing this all morning) and the page went blank. I refreshed the page a half a dozen times. Logged out of SF and then back in-- no change. Cloned the page thinking it would come back-- no change. How do I get my page back??? This is what it looks like…
I am building a community feature for users to come and look up product pricing. I need a way for a community user to pick a Product (native SF products table) from a picklist, and then it calculates a price. I’ve got a couple problems:1) I’m using a Table Filter (table is hidden with CSS) to drive the products model. The picklist values for the Table filter is created using an Aggregate model off “All Products”. It looks a little weird but I couldn’t think of another way to generate a picklist for our product entries.2) I get a heap error ONLY when logged in as a community user (not sys admin or internal user) that is because of this Products aggregate model. My model has no aggregations because I am only trying to generate filter picklist options off the Name field. Do I need one? Limiting the model to 50 records works fine, no limit throws the heap error. I want my users to see all the products in the picklist.So, is there a better way to dynamically create a picklist for my
Hi,I want to execute a javascript function which updates another field in the UI on an event of a field such as onblur=“myFunction()” .I have two date fields, and want to set the second date fields’ value based on the selection of the first one.What would be the solution for this? Are there any resources that I can refer (tutorials)?Thanks in advance.
In our standard contact creation page, if the email of the new contact already exist in the org, we give an alert message that “1 possible duplication record found” and provide the link to the duplicated contact and associated details to user. User can still choose to Ignore Alert and save the record (if duplicated account is not on the same account). In Skuid, however, the error message prompts as a duplication record but does not allow saving to ignore alert. What can we do to allow saving and also ideally display the duplicated record with the duplication record alert?
This issue is on all of my pages that use template fields on a field editor. Problem: Popup editor does not close when clicking the “Done” button or the X on the top right after saving the model.Steps to Reproduce:Edit any field in the model. Save the model. Click to edit a template field. Click Done or the X on the popup. The popup does not close.Workaround: Refresh the page, and lose any changes made.Potentially related:After page refresh, edit the template field in the popup. Close the popup. Save the model. The field still shows in italics despite saving. Click to edit the template again, face same problem as above and cannot close the popup. However, the first change made before the save is kept. Anything after the first save is not kept on page refresh.
Based on the value of a field in a table I want to render a row either as read only with no select boxes or editable with select check boxes.For example:There is a check box field in each row of the table entitled “Is Active?” If “Is Active” is checked then the row should render editable with a select check box. If “Is Active” is not checked the row should load read only without a select check box.
Probably sounds weird, but I am wondering if the Chatter Tab of Salesforce can be displayed on a SKUID page and displayed as a homepage component. Chatter Feed doesn’t seem to have the ability to see private messages. I want to display private chatter messages along with the chatter feed and other Skuid components on the home page. My thought is if I just take the Chatter Tab and display it as an inline frame in a Skuid Page with no header or side bar that I can then take that Skuid page and make it a Home Page component, but I am worried that a Salesforce Tab might not display as an inline frame inside of a Skuid Page inside of a Home Page component. Anyone have any experience with this? Thanks
It looks like we can’t group an aggregate model on a multiselect field. Any thoughts on the best way around this?
I keep getting errors like this:Error:field Appointment_Scheduled__c does not support aggregate operator SUMWhere Appointment_Scheduled__c is a boolean.Same error with COUNT or AVG.What is the best way to count the number of times that a boolean is true in an aggregate model?Thanks!
Hi, I have used Evernote Snippet tool, Awsome Screenshot, print the the previewed page as PDF and I keep getting the first page only and I need a way evaluate what has been built out.
Hi All,We have created a page that has a URL parameter called: programOn the page we have a table with a row action for a pop-up. Inside the pop-up we have a page include and we use the URL parameter as {{$Param.program}}When the pop-up renders the model receives the url parameter, but the labels where we use the program name do not render properly. I believe we are just getting lucky on the model, since the overall page that called the pop-up has the program url parameter. Is there an issue with using a page include on a Pop-up with the querystring completed?Am I missing something?Thanks!Joe
Boss’ Complaint: “Adding line items [to an invoice] takes too long because I have to click each item name after I start typing it in.”Problem: Skuid’s lookup fields are slow (understandable) and don’t perform any sort of useful auto-completion.What I’d like to be able to do: If you type an entire record name into the lookup field and tab to the next field, it retains that record name just as if you had clicked on it.Can anyone provide pointers on how to achieve this?
I am building a commercial product. Using Skuid primarily to be able to be able to have menus (tabs). I simply want a Skuid tab to link directly to a out of box Salesforce page. I would imagine that this is a standard request but I can't find how to do it. Anyone know how?Thanks in advance.
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.