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
We are trying to create a fee entry for a customer, and we need to base that fee on a % of the customer income. For example… Product A costs 1% of the Monthly Customer Income, so if the customer income is $1000, we would charge $10.00 in the fee table. The process right now: 1) Present the employee a list of fees (Fixed, Adjustable, % of Income) via Pop-up2) Employee selects the fee to charge3) Create New Record in Customer Fee Table4) Copy in all the Fee Schedule Values to the Customer Fee Table (no reference, in case the fee changes later)4) Save The Customer Fee Table5) Close Pop-UpWe are trying to use: (({{Cost_Amount__c}}/100) * {{$Model.CustomerFees.data.0.Customer_Income__c}})However this will only display the formula out… 1/100 * 1000 Is there a way of doing this when we are inserting the records? All our other scenarios have been able to be addressed with the Actions, but this is the last one.Thanks!
Hi All,We have an call center softphone (Interactive Intelligence) configured in Salesforce and it works in the native Salesforce UI via the sidebar. The dialer is IFramed into the sidebar by Salesforce, messages are passed via the interaction.js library and screen pops and everything else work as intended.However, our use case requires that we embed this dialer within a Skuid page (via an IFRAME and without the sidebar). We have attempted to do this, however Salesforce ignores any of the messages passed out from the dialer (like screen pops).Has anyone sucessfully integrated an OpenCTI dialer into a Skuid page?Kind Regards,DanPractiFI
I need to dynamically filter a fields picklist values, I know how to do this with a custom field render but how can this be achieved during runtime from a custom snippet?I tried editing the DOM but this appears to make the field invalid and never saves.From a custom field render we access the field like : var field = arguments[0].Now during runtime if I could access the field in a similar way it might be possible to call a custom render?I tried model.getField(‘myField’) but this only gives back the metadata object of the field and skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;
Hi, some members of my development team created some Skuid pages. Upon login yesterday May 28th, some of the pages were no longer visible by any of us (all System Administrators). The pages missing were created by two of the original Skuid developers (about two weeks experience). Pages remaining were developed by two new resources ( as of May 27th) but not the original developer's work. The pages lost are important. Can you tell me what may have gone wrong? I am sure the pages are still there. No one deleted them! We need to know how to make the invisible pages visible again?
Hello - When using the action framework to create a new row that specifies a default value on a reference field, the “reference” field counterpart contains a different value when the row added is the first row in the target model vs. any subsequent row. Steps to Reproduce: Create a new Account View page (stock) Add Phone field to Account model Add Contact models - Do not specify any conditions Add AccountId, Account.Name, Account.Id, Account.Phone fields to contact model Add a contacts table including fields for Account.Name and Account.Phone Add a global action “Add New” that runs multiple actions. Add a create row action specifying a default for AccountId to {{$Model.Account.data.0.Id}} Identify an account that has a phone number field value but does not contain any contacts Preview the page using account from #7 Click “Add new” - You will see both Account Name & Account Phone Click “Add new” Actual Result Account Phone is blank Expected Result Account Phone should have a value
Hi All,I want to add a filter on Top of page for Created date.That filter should be applied multiple models like(Contacts, Lead,Task).Because on a skuid page i show this contacts, Leads, Tasks aggregate data.So when ever i change created date in filter on Top of page then its should filter all models like(Contacts, Lead,Task).Can any one help how can i achieve that requirement?Thanks
I have an App called “Accounting Seed” installed that has a Salesforce custom button on the detail page for an object called “Billing”. The button is called “Post”.I have a table in skuid with all of the billings that are associated with a specific student enrollment. I would like to create a row action that allows me to push the “Post” button for a specific row. Any suggestions on how to do this?
Is it possible to create a Skuid page for workflows? I thought about doing an iframe but it appears Salesforce enforces a same origin policy which creates an error for the iframe.
Hi,please consider below data model. Account–>Opportunity–> OpportunityLineItem I am rendering opportunities into picklist with master model as account. on account level I have one field which will store opportunityID (just for filtering model data).on selection change of picklist value of opportunity, I am updating account row with currently selected OpportunityId. now, on OpportuniyLineItem Model, I have one filterable condition which matches the value of this account row’s opportunityId and all OpportunityLineItems Id. I am trying to refresh data model of OpportuityLineItem by below code on selection change of Opportunity. var OppLineItemModel= skuid.model.getModel(‘OpportunityLineItem’); condition = OppLineItemModel.getConditionByName(‘OpportunityId’); OppLineItemModel.emptyData(); OppLineItemModel.setCondition(condition, selectedOption,true); OppLineItemModel.activateCondition(condition); OppLineItemModel.updateDat
Is it possible to have the Geochart component highlight a region against a record instead of individual countries? Or perhaps allow for a side table/legend on the geochart to list all other non-single country entries.
Hello -After editing a row in a table, the filter, order arrows, search box, etc. visually all become disabled, however the textbox of a filter still accepts input. The filter text above and the border, “X” icon are “dimmed.”Steps to reproduce:1) Create tab page on Account (stock page) using defaults2) Add filter for a MasterRecordId3) Preview page4) Edit account name in a rowActual Result:MasterRecordId textbox accepts input but nothing happensExpected Result:MasterRecordId textbox should not accept input and should behave like “search” textboxThanks!
Hello -When a table is marked as “client” search, after a row is edited, the filters and order arrows are visually changed to disabled. The text and border of the text box of the filter becomes “grey” but the textbox itself still accepts input (which would be expected) and the filter is properly applied.Steps to reproduce:1) Create tab page on Account (stock page) using defaults2) Change table search to client3) Add filter for a MasterRecordId4) Preview page5) Edit account name in a rowActual ResultOrder arrows and filters visually appear disabledExpected Result:No visual difference
Hello - Encountering an unhandled exception when sorting a table. The scenario that exposes this is when a row in the table has been edited and then you try to click the sort arrow. As soon as a edit is detected, skuid disables filter buttons, search box and the arrow div but the event listener is still attached. Error: Uncaught Model ‘’ has unsaved changes. To update this model’s data, you must first save or cancel the changes. Steps to Reproduce: Create tab page (stock page) for Account leaving all defaults Edit a row’s “Account Name” field value - Search area & order arrow icons will “dim” Click the Account Name sort arrow Actual Result: Uncaught Model exception Expected Result: Nothing happens 🙂 Debatable if arrows should be hidden rather than disabled since the user might not notice the “dim” effect and will click it anyway. At a minimum, event listener should be unattached or check to see if span is disabled before requery. Thanks!
I have the need to bolt on some custom flavors of pages that will be used for searching external Web services and other things without using apex. I would like to use skuid api and add on html pages to handle some of the custom features and do $.Ajax type call outs and then integrate with skuid models. Today I have these pages in visualforce pages that are launched within skuid popups in a template iframe, this approach doesn’t allow the page access to skuid api. I have also done this with pure javascript injection of html to the Dom within the skuid page, this seems like a hard non maintainable approach and not scalable. I would like to have access to the parent skuid page api and use it in conjuction with some custom pages. Is there any good examples or ideas of an integrated custom approach to doing such things?
Can we expose a Salesforce Dashboard in a Skuid Page?
I want queue filters to clear on page refresh. How can I make that happen?Thanks!
I am looking to build the clone functionality from the detail view page on click of clone button, Is there any sample page for doing so
I have simple inline JavaScript on my skuid page to remove table component which works fine when I preview this Skuid page. But it does not work when I include this page in other Skuid page via Page include component. Any idea?
Where is documentation for accessibility / screen readers, etc. ? There are some accessibility coding best practices that we need to ensure are met by Skuid. Is it WCAG 2.0 Level A and AA compliant?
I thought I saw somewhere a method/example to move the selected item in a queue to the top of that queue, but I’m not finding it. Does that exist? If not, any suggestions?
When I select a tab it correctly goes to the skuid page. I have been shown how to remove a part of the URL and add something to go to the SF object.As an reference, what do I remove and add?https://dorothy–skuid.na16.visual.force.com/apex/PageBuilder?pagename=D_View_Engagements
i m new to skuid and created a sample pahe with contact as model. i am creating a record and when there is an error on any filed its simply not creates the contact record and doesnt show any error message.how can i make that it will show standard error message.i also used the “add-error” action - it is showing a message but its very generic. i ddint find any way to add error message that is raised in salesforce. the standrad error message should be shown aotomatically (like required or any error from validation rules/triggers)any help would be appreciated Thanks
Is there a way to remove the standard SKUID styling? (I’d love a blank no-style theme for SKUID)I can imagine a use case where I use a commercial Bootstrap template and create an entire application out of custom SKUID components that adhere to the template.This would be great.If you provided a means of pre-pending, post-pending information to the output of included SKUID components AND a means of overriding the output of the included components I would be in heaven since I could create versions of the included components that matched up to the external template.This would be unbelievably awesome! But I would be happy to settle for great at the moment.Is this possible?
I’m trying to display fields from master-detail data, but in my case the fields are getting stack together. Any ideas how could I fix it?
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.