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
Use render to exclude records starting with a period “.”I have done this in the past and it still works on those pages. I am trying to it again and it does not work.https://drive.google.com/file/d/0B409lhd9sYDcUWItMGlycFJrT0U/view
I need to have time entered in 1 minute increments. I stumbled across a post about this issue and the poster supplied this code. However, I can’t get it to work as a field render or inline. Has anyone gotten this to work. Is it something that I am doing wrong? Any help would be appreciated. ______________________________________________________________________________ var field = arguments[0], value = arguments[1]; console.log(value); if(field.mode == ‘edit’) { skuid.ui.fieldRenderers.DATETIME.edit(field, value); var html = ‘000102030405060708091011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859’; jQuery(field.element.find(“.nx-dt-timewrapper”).find(“select”)[1]).html(html); var jsDate = skuid.time.parseSFDateTime(value); var selectedOpt = jQuery(jQuery(field.element.find(“.nx-dt-timewrapper”).find(“select”))[1]).find(“option”).filter(function(index, item) {return jQuery(item).attr(“value”) == jsDate.getMinutes()}); selectedOpt.attr(“sel
We have turned off the state and country picklist fields. Turning this feature off in Salesforce removes the BillingStateCode and BillingCountryCode standard Account fields. Since we disabled this feature post building out our SKUID pages, it has created a bunch of SKUID model errors throughout the app, since these fields are no longer valid (i.e. no longer exist on the Account object). Is there an easy way to view all SKUID XML for all pages and perform a search and replace to remove all references to these fields and thus fix the SKUID errors? Or do we have to fix each model on each page in the XML editor?
I see that there are alot of conversations about mass creating records from a different object but I am having a hard time taking all the different JS snippets and making them work for my case. Any help would be greatly appreciated!I have an object entitled Upsell__c that connects items to a parent item. This is to create “packages” to sell. In the Upsell__c object you have two lookups to the Item__c object. One lookup for the main item and the other lookup for the child item.On a Skuid page I have a table connected to the Items__c object with a draw showing any upsell or “child” items.I need to be able to add all of these items to the CustomerQuotationLine__c object with one button. The caveat is not all parent items will have a child. Currently I can add the “main” or “parent” item through the action framework but that is just creating one row. I need to create a row for the parent and all its children. For example if Item A has 3 child items. I need to be able to create 4 new rows
If I have a 1000 items and most are the same. How do I only show 1 unique line item. So, instead of 1000 items it will show 23 unique lines?https://drive.google.com/file/d/0B409lhd9sYDcZm91Qnhka2RnZmM/view
Is there a way to conditionally render the Account tools (Merge Accounts, Mass Delete Accounts) from a custom skuid page? I’m assuming I can do it by explicitly naming the profiles that already have permissions to use Account tools, but since the Profile IDs will change from Sandbox to Production, this is a little cumbersome.Within the Standard Salesforce page, if I don’t have access to the Account Tools, the links do not display. I’d like to mirror this functionality in Skuid.
During Matt Brown’s webinar on Dashboards last week, he mentioned that the sample pages he was demoing would be added to the page repository. Where can I find these Dashboard Pages?Thank you!
I have a page with an include and I can pass a parm to the included page. The included page also has an include and the parm is used on the 2nd included page. If my parm is “addengagebutton”, how do I pass the parm from the main screen to a 2nd lower included page. I assume something needs to go the 1st included page when calling the second called page. I can not define the parm in this screen as the 2nd included is called from various place and must pass a unique parm from the main page.
Check above screen shot. I have added multiple sub query base filter (Based on Junction Object) . Same filters I have also added on aggregation model and basic model. This filter working fine individually but when I am applying two filter at same time on basic model it is not working but same filter are working on aggregation model. I had check all the conditions both the model have same conditions. Please provide workaround or solution for this.
I want to display an error message with as below with a skuid snippet,var $ = skuid.$; var pageTitle = $(‘#PersonalDetailsForm’); var editor = pageTitle.data(‘object’).editor; var PersonalDetailsFormModel = skuid.model.getModel(‘PersonalDetailsForm’); var PersonalDetailsForm = PersonalDetailsFormModel.getFirstRow(); if (PersonalDetailsForm.Asic_CountryOfBirth__c === ‘Australia’) { editor.handleMessages( [{ message: ‘Error message xyz’, severity: ‘ERROR’ }] ); return false; } the “var editor = pageTitle.data(‘object’).editor;” sections gives an error message saying that“Uncaught TypeError: Cannot read property ‘editor’ of undefined” The wired thing here is that the same code snippet worked for some other pages in my system without an error. Why am I getting this error in my second implementation, I have noticed that there is a model with the same name as the pageTitle “PersonalDetailsForm”, Could this be an issue? Appreciate your help
Hello Dear All, i’m trying to create a searchable table built with two components and I have problems with that. Maybe someone can help me with this. I would be grateful. I have two components:a) table component A used for defining the search parameters; b) table component B which shows the results with regard to above set parameters. Table A is mainly based on multi-picklist fields like:Area_Master (with values: Sales, Operations, Languages, Warehouse); Area_Master_Score (with values: Air, Air&Sea, Road, Sea);etc. my problem is that while I am defining parameters in only one of this fields let’s say Area_Master = Sales, Operations and leave second field without selected values I don’t see an results because it search for Area_Master_Score = blank. And I would like to have an opposite logic i.e. if none value is selected than search for records which have any of values from that field. The same should work in another direction i.e. when I’m selecting some values I would like to get
When a new row has been created in a model and is marked for deletion, if the “save” fails, the row is removed from the model. Steps to Reproduce: Add a validation rule to Account where Name = “Test123” (don’t allow accounts with name of “Test123” Create Tab page for Account Mark “Save” button to “rollbackOnError=true” Add new row to table with Name of “TestABC” Add new row to table with Name of “Test123” Mark row “TestABC” for delete Click Save Expected Behavior Both rows remain in model/table due to validation error that occurs on “Test123” row Actual Behavior “TestABC” row removed from model/table Analysis removeRowById is called prior to remote save operation occurring. Sample Page XML <skuidpage unsavedchangeswarning="yes" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="100" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"/>
When I select a specific string field “Search Tax” the “Contains” option is missing. When I select a different string field “Search Name” the “Contains” appears. If I then select the first String Field “Search Tax” and save the “Contains” disappears.https://drive.google.com/file/d/0B409lhd9sYDcX3p2RjladDRlTXM/edit
On my Account tab I have tabset with 3 tabs to breakdown the fields. In the first tabset tab I have an Industry field picklist. Is there a way to change the color of that first tab based on what is picked in the picklist. Basically if “Other” is chosen then the tab color would change to red, if “Commercial” is chosen it would turn yellow and so on… If this is possible the more detailed the explanation you can provide the better, from the steps to take and the code to include.Thanks for the help
Hi,We have a requirement to have lengthy characters for salesforce picklist field help text. But salesforce as its character limit with help text. We decided to show as pop up with larger text in skuid. Is there any idea to create help text as pop-up in skuid for a picklist field. We have tried the following suggest, but its suits with template component. But in our case, it is picklist, which could not show it as template, due to the following suggest doesn help.Reference the link that we tried as suggested by @Rob Hatch for template.https://community.skuid.com/t/custom-popup @Zach McElrath @Rob Hatch - Any help would be great.
Hi, I have a dependency pick-list which is “States” (Dependent) depends on the “country”(Controlling) pick-list, once I select a country I get the errors appears as the screen shots attached and the dependent pick-list shows all the values in it for whatever the selected value on parent pick-list. Do I have to do any other configuration in order to get a dependent pick-list functioned ? Can someone help me on this? Thanks
Hi there, I am new to skuid so I hope this isnt a silly questions. We use Marketing Cloud for our email communications and we have the connector installed to our salesforce org. I have successfully built a model into their custom objects and have been able to replicate the Email Sends tab that their connector adds to the standard contact page. What I have not been able to figure out is how to add their custom links to a skuid layout (for example Marketing Cloud Unsubscribe and Marketing Cloud Resubscribe. These appear to be buttons that trigger a snippet of javascript. The link itself is something like: javascript:window.invokeOnClickJS_00b1a000000hk5n%28this%29But, if I create a button in a skuid layout with a url of javascript:window.invokeOnClickJS_00b1a000000hk5n%28this%29 nothing happens. If I look in the main Salesforce/Setup/Build/Contacts/Buttons Links and Actions I can access the onclick javascript. So, I guess my question is, is there a way to access the actions/custom links
I am trying to use an initiating event when a row has been updated via the standard mass update. The initiating event is set to listen for a row update from one field. When the row is updated I want the model to save. I am finding when using mass update, the fields technically are not updated because they don’t save. If I type in each field the initiating event kicks off without a problem.My questions is, is it possible to include a before action when using the standard mass update?
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.
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.