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
I found this below link for Reports.http://help.skuidify.com/s/tutorials/m/models-conditions-filters/l/102652-aggregate-models-make-dyna…Is any possible to include Standard reports UI in Skuid?
Skuid page is not loading on iOS Simulator. However when tried on the actual iPhone device, it works pretty well. I am trying to access the page using Salesforce 1 app and it works well on device. Same page does’t render in simulator.
How to apply the Sharing setting for SKUID pages?I have a object called “Project”. I have set the OWD as “Public Read only” for this object. So I can view all the users record. When I edit the other users record from list view it opensthe SKUID edit page, here I want to show the “Insufficient privilege” error message instead of showing the edit page (like standard Salesforce behavior).Now, When I save the edited record it shows the error.Thanks in advance.
Can we implement the Salesforce report in Skuid page with sorting and grouping?
Anyone know what the sObject is for Salesforce CRM Content? I need a model on it in Skuid, and I can’t find the documentation in the salesforce.com help.
I am trying to code a button to send to a static email address by opening the users default mail client on click. I tried using Javascript as an inline snippet but that didn’t work. The button is coded now to open a sales force email but that will not suit my purposes. I need the button to act just as an email link field. I am sure this is easy but I am spinning my wheels right now. Thanks!
we created wizard save button with some account required input fields in wizard.when ever we are click save button,its not showing required field error message.How we need to display error message in this case
Is it possible to clone one of my buttons in Skuid on the same page as the original button? I have a few buttons with a lot of specific actions that vary slightly based on rendering conditions. It would help greatly if I could clone that button and just make the minor change instead of recreating that entire button. Is this possible?
How would you approach this request?Our inside team sets follow up tasks when they can’t reach someone or when they speak to a prospect and the person asks to follow up later. We’ve given the inside team a Calendar component to see all of the follow up items for that day and they’d like to be able to see recent activity with that lead/contact in the Calendar pop-up.How would you approach presenting that information?It’s similar to this concept but on the Calendar pop up window: http://help.skuidify.com/m/components/l/269735-add-nested-rows-to-your-table-with-drawers
An extension to this converstion: https://community.skuid.com/t/toggle-tab-labels-on-off. I thought it warranted its own question.I’m running this snippet to try to re-render a tabset: var $ = skuid.$; var tabs = skuid.component.getById('CaseTabs'); tabs.render(); Nothing happens.Am I using getById function incorrectly?
I need to create the hierarchical list view with child objects. I am having 3 objects with relationship. I would like to view the parent object list view with slider list view of child objects.
I’ve searched high and low and just can’t get my head around page includes.Can someone please assist?I am building an opportunity page. I have a custom object called FactFind and have created a model for that object.Both models are working fine.I have created a tab on my opportunity page and want to display a page include for the related FactFind record in that tab. The FactFind record Id should be referenced from the Opportunity Object in the lookup field “MortgageFactFind”.It’s not working and I suspect I’m missing something in my query string:I’ve tried a million things nothing works. I’m obviously missing something vital. If someone can point me in the right direction that would be great.Thank youErin
I am setting the condition of an account-based model via a row action on a table of account records. It works the first time, but when I click the row action a second time on a different account record the condition does not appear to update - it keeps the last condition. What do I need to do to clear the condition and pass it a new value? My actions are as follows:Activate and Set Value of ConditionBlock UIQuery All ModelsUnblock UII have tried adding “Deactivate Model Condition”, “Cancel Model”, “Empty Model Data” prior to the “Activate and set…” action and a separate “Query Model” just for the model I am changing. Models:Accounts <---- lists accounts in tableSelectedAccount <----- table row action sets condition on this modelModelsBasedOffOfSelectedAccount <---- Related data to Selected Account
In the template below, Is there a way to change the text color of ‘Product on Allocation’ if 'On_Allocation is true? Can you embed CSS or HTML?
Is there a way that I can allow users to toggle a tabset to show labels and icons, or show just icons?I need names until users are familiar with the meanings of the icons, and then it would be nice for them to be able to turn off the names to save space.
I need to be able to list all Activities related to a contact when I use Task model not all activities are listed on the the contact. Does anyone knows which object I should be using?
I’ve read a couple of blogs about the @InvocableMethod annotation in Apex being available in Spring 15 - just wondering whether we might be able to invoke methods from Skuid pages? My understanding is that its available from the lightning process builder, but it would be awesome to have this in Skuid and would solve some of those ‘can we trigger apex from Skuid’ questions.more info here https://help.salesforce.com/apex/HTViewSolution?id=000206831&language=en_US and here https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_classes_annotation_InvocableMetho…
Is it possible to have a request update button on a table row that goes to a skuid override page for the standard sales force send a stay in touch request email so it can be branded. We want to use this for our community users.Thank you!
When a field on a custom template popup is marked as “required” (UI required, not SFDC required), the record is allowed to be saved without specifying a value in the field. Steps to reproduce: Create new Account Detail page Add template field to field editor Set template to “{{BillingCity}}” Choose “Show custom popup” Change the “Billing City” field in the popup to required leaving all other default config Preview the page Go in to edit mode of the popup and make sure there is no value If “Save” isn’t enabled, make a change on Name field Save the record Actual Result Record is saved Expected Result Validation error for Required field BillingCity should be displayed Sample Page XML <skuidpage unsavedchangeswarning="yes" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"/> <field
A drop-down(this value for Custom settings), with options pre-filled based on values entered in a table.For example,I am entering “Account number” field, values automatically pre populate from this custom setting values. I have used this custom settings options for so many input fields in SKUID page.Is it possible?
Creating interfaces that look different based on values that are entered (ie, check a box to show/hide certain fields). This might need to be dynamic (ie, checking a box immediately displays certain new fields on the UI), or static (ie, checking a box then means a separate screen includes that column in a report). Can you let me know is this possible using Skuid?
Hi,Suppose if any body enter ssn as 123456789 i need to modify the field value as 123-45-6789.I have written below java script code snippet. That is not working.(function(skuid){var $ = skuid.$;$(function(){ var myModel = skuid.model.getModel(‘Offender’); var row = myModel.getFirstRow(); var params = arguments[0]; var field = arguments[0]; var ssn = arguments[1]; var firstthree=ssn.substr(1,3); var midtwo=ssn.substring(4,5); var lastfour=ssn.substring(6,9); var text= firstthree + “-” + midtwo + “-” + lastfour; skuid.ui.fieldRenderers.TEXT[field.mode](field, text);});})(skuid);Is there a way to debug the code.
We are using professional edition currently, can Skuid bring value to Professional Edition, if so, how i am benefited? EE is somewhat expensive, please suggest
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.