Upcoming Event - 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
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.
The button link that appear in a sub tab set: how can I (declaratively preferred); 1) Change the color of the sub tab button link2) Change the size?If it can't be done declaratively, can someone provide the code?
Using Salesforce Lightning Connect, I’ve successfully wired a skuid table to an external object that is a table on IBM’s DashDB hosted database service. (Sort of DB2 LUW in the cloud on IBM Bluemix.) However, when I try to use the skuid “Search” field, nothing seems to happen. When I use the similar capability in the traditional Salesforce dev environment, a search is done across all columns for the data in the search box, without any special effort. Do I have to explicitly enable something else for search to work when used like this? Thanks in advance! Greg Stasko
Export file function not export correct data in the row when select multiple value in multi-select picklist.
Hi,I have 2 models: Location & Suburb.On the Location model fields are:Street Name Suburb (Lookup to Suburb model) There is also a model action on Location, that when the Row in Model is updated triggered by the Suburb field, it will update a value in the Location model and Saves the Location Model.What we find from the user experience, is that when they tab from Street Name to Suburb, even before they start typing, it loses focuses from that field, and they have to click back on the Suburb field.Is there some way around this?Thanks.
I have two datetime fields pulled into a tab set of two tabs. One datetime field is from the model which shows the date as: 7/03/2014 4:38 pm; The other field is a template from different model which show date as : 2014-10-14T05:12:42.000+0000Is there any way the second date format can be aligned to first one?Cheers
Here are the steps to reproduce. Sample page XML at the end. Note 1 : Just using standard objects and fields; nothing really special.Note 2 : Model query uses Merge/New Click to open drawer Get list of opportunities. Edit the amount and/or stage fields. Click to open another drawer. Notice the prior edits are lost. Page XML <skuidpage unsavedchangeswarning="yes" showsidebar="false" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="100" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"></field> <field id="CreatedDate"></field> <field id="AccountNumber"></field> <field id="Type"></field> <field id="Id"></field> </fields> <conditions> <condition type="join" value="" field="Id" operator="in" enclosevalueinquotes="true" joinobject="Opportunity" joinfield="Ac
I have one model “Backorders”. In “Backorders” there is a user lookup field that I need two filters to work on. When I create the two filters they do not work independently. If I enter data in filter 1 (include) it will show in filter 2 (exclude) and vice versa. Filter 1 (Include): Is a multi-select option that will filter based on a user(s). So if you type in Stevie Wonder only Stevie’s records will appear. Filter 2 (Exclude): Is a multi-select option that will exclude user(s). so if you type in Stevie Wonder all records except Stevie’s will appear. I need the two filters to work independently that when I type something in the exclude filter the include filter stays blank.
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.