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
Hey guys!I have a row action that opens a drawer with a page include. I am trying to get the details of a custom object to open into that drawer, but having issues how to pass the id of the row object to the detail page.
I am using conditional rendering in the mobile app to dynamically build out a form based on the picklist value selected. I have the conditional rendering added to the “Division” so all fields withing the division appear together. When I use the picklist to select the value the conditional rendering works correctly BUT it squishes the division and all the fields into 10% of the screen. The same behavior can be seen if you Preview the page in a web browser. In a web browser, however, you can resize the browser and the division will snap back to take up the whole screen. On the phone though there is no way to resize the screen.I did just discover if select the value in the picklist and it renders incorrectly I can switch it to a non-rendering value and then change it back and then the whole division renders in the full screen. But I can’t tell my end users that. Please let me know if there is a known fix. As always, I appreciate the help and the awesome product.Thanks!Rich
Can I change category field and category type from Category Axes in bar chart through JavaScript and redraw chart based on new field?
xmlDef.attr(‘mypicklistproperty’) returns some kind of object.What is the appropriate syntax for getting the value of a picklist property?Thanks!
Hello, I’m trying to present the formula field on skuid table that is in text form and shows images based on different criteria of another field. On SF it is working correctly. However, on Skuid it only shows alternative text and icon of the picture. I also used template and “allow html” but it didn’t help. Should I use another approach for such situation?Thank you
Hello,I’m trying to do create new row snippet with the use of tutorial:http://help.skuidify.com/m/components/l/109496-mass-create-recordsand I would like to ask you for help. Thank you in advance. The goal is to select accounts or contact from one skuid table (mass action), select the corresponding campaing (built on custom object) and load the accounts or contacts to the object campaign membership (built on custom object). The corresponding model are as follow:a) Accounts;b) Sales Plan; c) Sales Plan Membership (with filterable default off field Account); Actions used are: a) Mass Action that triggers pop-up showing Sales Plans and Row Action on Sales Plan table that create new row in Sales Plan Membership, populating lookup Sales_Plan__c with {{Sales_Plan_c.Id]]b) Run Custom Java Snippet in the form of: var params = arguments[0], $ = skuid.$;var $ = skuid.$; var model = params.model, list = params.list, selectedItems = params.item ? [params.item] : list.getSelectedIt
I have an aggregate table on the Opportunity object that groups opportunities by sales reps (custom obj) and sums the Amounts of their opportunities. I then have a drawer to show each opportunity and some details about each. On the main table I also have a filter to show totals based on the opportunities Stage. So (Example) we see on the main table Brad Jones (sales rep) has $100,000 in opportunities accross all stages but if we filter the stage to only show Closed Won we see he only has $25,000 in “Closed Won” opportunities. What I want is to, at this point, open the drawer and it show only the opportunities that are “Closed Won”. How do I accomplish this?
If i wanted to save the list view for My opportunities like we can have in the salesforce OOB, Can we do that with SKUID ? Or there is any work around for it ?
I’ve built my first aggregate model to deal with charting tons of records. I have a custom object that has commission payments by month, so my model is just a sum of payments grouped by Date and Sales Agent. It doesn’t seem like the chart understands that the X axis is a date field type, and when I change the function to a Calendar Month or Fiscal month I only get 1, 2, 3… as labels and none of my users will know what that means. On a regular model, they see ‘Jan 2015’ and we can do the additional date Granularities which is great. Any way to adjust this formatting?
Hello, I have a date field on the page called “starting date” and every time it’s saved, it updates the “starting date” field in “abc” model. I want to be able to update the link using that updated date. The link takes user to a Salesforce report. Here’s the template setup: It doesn’t seem to update the filter on the report. I have it set up as Starting Date greater or equal “”. When the link is clicked, it takes me to the Report Builder. Thanks!
Hi All, How to run a snippet in HTML button tag, For Example, here we have Snippet and HTML button by using our Skuid template. When we click on Download button then it has to cal Snippet, How can we achieve this.??? Thanks in advance… Thanks, Shaik
Hi All, How can I display the particular model records as pick list, For Example I have Object called Topics, that object contains 5 records, I need this 5 records as a pick list in my skuid page. Screen A:Topic Object with 5 records. Screen B: Visualforce page with pick list NOTE: I need to build Skuid page like this. Thanks, Shaik.
Hello -I’m wondering if anyone in the community has encountered a similar scenario to the below and how you solved for it and/or if anyone has thoughts on UI design concepts.ObjectiveBuilding a popup that allows the user to create a record in a junction object. Need to provide the user a way to “search” from 3 levels up on each side to identify the objects that will go in to the junction as lookups.Use Case Summary:1) User must be able to “filter” by PO, then by PO Item and then pick a PO Item Ship Period2) User must be able to “filter” by SO, then by SO Item and then pick a SO Item Ship Period3) After identifying both PO Item Ship Period & SO Item Ship Period, user must input a numeric valueMore details:1) Purchase Order (PO) contains Purchase Order Items (POI) which contain Purchase Order Item Ship Periods (POISP). Same on the Sales Order Side (SO->SOI->SOISP).2) Junction Object between POISP and SOISP called Allocation. User can allocate some or all of the quantity of P
What is the best way to conditionally render properties in the builder for a custom component based on the values of other properties?Should I just wrap an if statement around the property and push it into the basicPropsList?If so, do I need the onChange function of the ‘parent’ property to be rebuildProps(), or is refresh() sufficient?My propertiesRenderer is below. Based on the value of the defaultnametemplate property, I may need to render the patientmodel or the customdefaultname properties. propertiesRenderer: function (propertiesObj,component) { propertiesObj.setTitle("Signature Component Properties");<br>var state = component.state;<br>var propCategories = [];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var signatureTypeMeta = skuid.$M('SignatureTypePicklistEntries').getField('Signature_Type__c');<br>var basicPropsList = [<br>{<br>id: "signaturemodel",<br>type: "model",<br>label: "Signature Model",<br>
Hi, I am trying to get the user select Product from the lookup window. I was able to remove the hyperlink of product field on read mode, but in edit mode on selection of product name on lookup window, it navigates to standard Salesforce page (it works fine when we click on select icon against each product names, but on click on product name itself it navigates to standard salesforce page). Is there a way to override/remove link (of Product) on lookup window. I do not want to display lookup as picklist because I want users to search by product name and then select from the lookup window. I did as below but with no luck: var field = arguments[0], value = arguments[1], renderer = skuid.ui.fieldRenderers[field.metadata.displaytype], mode = field.mode; // Get the pricebook entries model we are using for the renderer var pricebookEntriesModel = skuid.model.getModel(field.options.optionmodel); if (mode == ‘edit’) { // Specify that we want to display our field as a Picklist field.options.ty
I Have a page built which contains multiple pages of records and when i make an inline edit of a record and save it i am returned to the first page with the field i tried to change in the same “Edit” mode on the second page.What is the best way to try and troubleshoot / resolve this issue The field is using the standard field renderer
When we get a date from the model and try and convert it to a java script date, it throws and internal skuid error. Advice?x=skuid.model.getModel(‘MMA_Private_Lesson_Enrollment’).data;[ObjectAdditional_Charges_for_Student__c: 0Base_Install_Amt__c: 97.5Contracted_Bookings_Total__c: 18Contracted_Total_Bookings_Price__c: 1170Enrollment_End_Date__c: "2015-01-23"Enrollment_Start_Date_Time__c: "2014-08-29T18:40:00.000+0000"First_Install_Date__c: "2014-08-01"Google_Enrollment_Spreadsheet__c: "https://docs.google.com/a/musicallyminded.com/spreadsheets/d/16jqkoNamfIGjtCZ6CRPpG6BHVPBK5gDeC0A726…: "a98U00000004CF4IAM"Id15: "a98U00000004CF4"Instructor_Pay_Rate_and_Lesson_Duration__c: "a91U00000008OIPIA2"Instructor_Pay_Rate_and_Lesson_Duration__r: ObjectMMA_Academic_Season_s_Term__c: "a4XU00000004DVMMA2"MMA_Academic_Season_s_Term__r: ObjectMMA_Enrollment_Status__c: "a6FU00000004DfrMAE"MMA_Enrollment_Status__r: ObjectMMA_Instructor__c: "a0rU0000000PK85IAG"MMA_Instructor__r: ObjectMMA_Private_Lesson_
I’m trying to do this: https://community.skuid.com/t/can-i-do-conditional-rendering-based-on-a-query-string-p……but it seems like it should be doable now using standard Skuid functionality. I just want to make sure I"m not missing something!I have a page that I use over and over again as a Page Include. This page has a button labeled “Save and Close”. I want to display this button only if my page is being displayed within a Page Include. In the query string for my Page Include I have: popup=trueIn my page, I am using the following conditional render conditions on my button: Page/URL Parameter Value; popup = trueWill this work? Or should I use the hack described in the post linked above?
Does anyone have one?Do I build it with xml the same way that I do for rendering the component in runtime?
Another custom component question. 🙂I have a model property on a custom component.I’d like to create a picklist property where the picklistEntries are defined by the metadata for a picklist field in the specified model.Even better, I could dynamically create a model on the desired sObject and get the picklistEntries from a field that way.I’ve tried both, without success.It seems like skuid.$M() returns undefined even when the model ‘exists’… I suspect that a model has to be loaded for that to work? What if I create a model new model with skuid.model.Model() in the builders.js and call .initialize().load()?Here’s my real question: Is there a way to access field metatdata on the builder-side in order to dynamically define picklist entries for a component property?
Hi everyone,I have a table, and I’d like to select some of the rows from within some Javascript code, but I just can’t seem to get it to work.I’ve seen this response here which handles de-selecting rows, which makes me think my approach is not crazy, but extending this example doesn’t appear to do what I need it to: https://community.skuid.com/t/snippet-code-to-deselect-selected-table-rowsI tend to explore the API via the dev console in Chrome, and here’s what I’ve done:var mytable = skuid.$(“#my-table”).data(“object”); to get the tablemytable.list.renderedItems; to look at the itemsmytable.list.renderedItems[“18charID”]; to look at a specific item - hey look, there’s a selected property!mytable.list.renderedItems[“18charID”].selected = true; doesn’t appear to do anything in the UI. Maybe we need to…mytable.list.render({doNotCache:true}); Doesn’t do anything either. In fact it resets the selected property to false.Variations on the above - visibleitems rather than renderedItems, and th
We want to use the same object called “Rental Listing” for another use. Basically we have rental properties and we also want to include vacation properties. 90% of the fields apply to this record, but we need a bit of a different page layout for the vacation property page. We want to show a different layout when a field = a specific value. Any suggestions?I’ve tried to go into page assignments but that didn’t seem to work. I do not want to just do field rendering either as a new layout and UX would be more appropriate. Suggestions?
I would to have a hyper link on a field. on-click I would like to redirect user to a different page. But I don’t see this template option in couple of field properties.
Hi,I am trying to defaulting a value in the picklist with the JavaScript.var params = arguments[0],$ = skuid.$;var result=document.getElementById(“PicklistId”);result.options[1].selected = true;result.options[1].defaultSelected = true;But it is not working. Can any one please fix it. Thanks.
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.