Company Annual Virtual Conference
Skuid
Recently active
SFX V2 16.0.3
I’m using the data grid for my table default mode and when previewing/using the page, the column headers are part of the tab order. I’m not sure why that would be the default as I don’t see a practical use for tabbing through the headers. Is there a way to remove column headers from the tab order? Suggestions?
Try the filter <skuid__page unsavedchangeswarning="yes" personalizationmode="server" showsidebar="false" showheader="false"> <models> <model id="PagesRevisionsDayAgg" limit="" query="true" createrowifnonefound="false" datasource="salesforce" sobject="skuid__Page_Version__c" type="aggregate" queryallrows="false" orderby="DAY_ONLY(CreatedDate) DESC"> <fields> <field id="Id" name="countId" function="COUNT"/> <field id="CreatedDate" name="maxCreatedDate" function="MAX"/> <field id="CreatedDate" name="minCreatedDate" function="MIN"/> </fields> <conditions> <condition type="fieldvalue" value="" enclosevalueinquotes="false" field="CreatedDate" fieldfunction="DAY_ONLY" clientorserver="server" state="filterableoff" inactive="true" name="LTE" operator="lte"/> <condition type="fieldvalue" value="" enclosevalueinquotes="false" field="CreatedDate" fieldfunction="DAY_ONLY" operator="gte" clientorserver="se
Right? ie. can’t drag and drop.
Defect/Issue Description: (V1) Seemingly randomly the Table Export button does nothing when clicked Environment: API Version: V1 Release: Dubai Release version: 15.3.7 Platform: Salesforce Brief Summary of the Defect/Issue: Seemingly randomly the export button on specific tables will do absolutely nothing when clicked. Refreshing the page doesn’t help, when this bug occurs it has something to do with that specific table for some reason, and that table will never be able to be exported with the standard export. It could perhaps have something to do with tables that have large amounts of data in them and are not using the load all remaining records feature? It seems to happen most often when that’s going on. Action Performed: Click the Export button on a table. Expected Result: Get an export downloaded. Actual Result: Nothing happens. Additional Resources: I’ve managed to put together an example page that shows this bug in action. XML as follows: <skuidpage unsavedchangeswarning="ye
As per title. {need more text here to accept body 😂}
I just upgraded from 12.1.17 to the latest 15.3.7 release and something has changed with the Search component (V1). My Salesforce users are having a harder time using the Search component to locate things. Before they could more liberally type partial or different names and still find what they were looking for, now things don’t show up that used to show up. My Search component is configured to search “All Text Fields” I did a little testing. It looks like formula text fields are not included in the “All Text Fields” search, is that correct? Were they included before? It also looks like the text typed here does not match unless there are exact matches. I think perhaps this is what changed. In other words if I search for “John Smith” it will not match an account that has 1 field with the value “John” and another field with the value “Smith”; I need to have a single field with the value “John Smith” for the account to be matched. I don’t believe it worked this way before. Is there anythi
Defect/Issue Description:A description of the bug Environment: API Version: *** v2 *** Release: *** ? *** Release version: *** 15.1.6*** Platform: *** Salesforce *** Migrating a Calendar from V1 to V2. The Calendar has 2 sources, both are based on Aggregate models. Both models / objects have both Date and Datetime fields, where the Datetime fields are formualic copies of a Date as a workaround for the V1 calendar. One of the models Groups on the Date field, and aggregates (MAX) the datetime copy. The design calls for reporting events by date, not by time, the V2 calendar is changed from “Start/end date and time” to “Single date” Date Field Type. The new picklist for the Date Field property does not include the Date grouping. If I try to add the Date field as an Aggregation, the generated SOQL becomes invalid, as the Grouping field is already included in the Select clause (as well as the Group By Although the Grouping field is part of the Select clause, the skuid composer does not expo
Use button to copy text to a reference field for a search. I do not want to retype the data to a reference field for look up purposes
Hey! Great Job with Skuid! I have been a long-time user and continue to enjoy building apps. One small tweak that I think would improve user experience in limited instances is that when you add a page include to a page in the page builder (at least V1) there is a link to edit that included page. When clicked, it opens up a new tab displaying the page builder open to that page for editing. The issue is that the url that opens includes the page module parameter. I moved a bunch of pages from one module to another. The page include component didn’t update for this move so it tries to open the page in the editor with the old page module reference. This creates an error as if the page doesn’t exist. I have to edit the url to remove the page module parameter in order to get the page to load in the page editor. Since pages need to have unique names, the module is not needed as a unique identifier so it would be better left out of the URL to prevent this issue (in my opinion). Example: –skuid.
I have an object with two checkbox fields (Primary and Secondary). For any record the checkboxes are exclusive - one or the either checkbox can be checked, or neither can be checked. I’ve got a Table of such records. How might I create a listener (event handler & renderer) that would enforce exclusivity? I created a listener that would force Secondary to be unchecked whenever Primary is checked, but I need the opposite to also be enforced. I’ve tried separate listeners on the two fields, but I can’t get both to work at the same time, and if they did I’d end up with dueling listeners. If I had complete control over the object, I’d replace the checkboxes with a picklist and display it as radio buttons, but I don’t. Here’s my one-way listener, for what it’s worth: var field = arguments[0], value = arguments[1], renderer = skuid.ui.fieldRenderers[field.metadata.displaytype], mode = field.mode; // Get the household members model we are using for the renderer var householdMembersModel =
How can you use CSS to slightly tweak or completely overhaul Skuid’s default styles?
Zach takes a look at some of the more confusing and complicated use cases for conditions and filters. For example: - Filtering by picklist value (the simple case)- Filtering records based on a join object - Filtering by created month - Filtering by Contact birth year
We have a phone field on the contact level, and would like to push it to our custom object “family” level by clicking a button or checking a box. Workflow rules don’t help us here because cross-object workflow rules don’t work for custom objects. There is a one-to-many relationship with families and contacts, so there will always only be one related family to a contact. This is critical functionality for our org, so please let us know of any possible solutions.
The Wizard’s pretty snazzy, but how would you use a field’s value to determine which step to show next? Well, keep reading. First, create a new Skuid page and paste in the following XML (save the page, scroll to the bottom and click “View/Edit XML”): <skuidpage showsidebar="true" showheader="true"> <resources> <labels/> <javascript> <jsitem location="inlinesnippet" name="wizardLogic" url="">var $ = skuid.$; // retrieve the model var model = skuid.model.getModel('LeadData'); // get the first row var row = model.getFirstRow(); // check the value of the field var fieldToCheck = row.Watched_a_Demo__c; // get the reference to the wizard component // through the dom element's object value var wizard = $('.nx-wizard').data('object'); // save the model model.save({callback: function(result){ // if the save was successful... if (result.totalsuccess) { // check our field value if(fieldToCheck) { // if true, navigate to step3 wizard.skooWizard('navigate','step3'); }
We have two or three places in our SKUID app where a user can create a record inline in a list. (contacts, plus two custom objects). When the user does this, as soon as they start typing in the first text field, the first column header disappears entirely - first the text of the header, then a few seconds later the space for the header - so that all of the other column headers “move over” one to the left. It doesn’t affect the actual columns, just the headers. This will stop us from going live (our go-live is planned for three weeks from today) so please help urgently. You already have access to our sandbox and we’re happy to provide more details.
Update: The community migration is now targeted for the end of June. We’re thrilled to bring you some wonderful news: at the end of May, the Skuid Community will be joining forces with the Nintex Community! 🎉 Here’s what this means for you: All our fantastic Skuid content is getting a new home on the Nintex Community platform, organized for easy access. You’ll continue to enjoy the same vibrant space for questions, discussions, and sharing insights—just under a bigger umbrella. We’re committed to ensuring this transition is smooth and minimally disruptive all around. Why this change? As we become part of the broader Nintex family, it’s important that our Skuid customers have seamless access to the expansive resources Nintex offers. What do you need to do? Nothing new for now! Keep engaging as you always have. Rest assured, Skuid Skool isn’t going anywhere and will stay just as it is for now. Stay tuned! In the coming weeks, we’ll share more details about what to expect in the Ni
Overall improvement: it takes too many clicks to do anything (I have a separate post on flow actions). You have to add a condition, action, etc. then wait for it to get added to the UI, then click something in order to configure it. For conditions, my recommendation would be: Click the condition and that displays the condition details for editing Change the stacked dots to a trash icon that requires 2 clicks to delete. So for #1, clicking the condition will display this:
When adding an action sequence, my intuition was to double-click the action for it to be selected. That is currently not happening. You have to click an option then click Done
First component’s property is hidden because its too close to the header and chrome is infront.
Calling all long-time Skuid builders! Have you made the switch to API v2? If you have, what has your experience been like? If you haven’t, what are some of the roadblocks and concerns you have? We’d love to hear about your experience. Not sure what version you’re on? v2 Composer [current] v1 Composer [legacy] Here are some helpful resources about migrating to v2👇 Skuid why-customers-should-migrate-to-V2 We understand that migrating from V1 to V2 could feel intimidating, but here's why you should. Plus, our migration utility will help you get there.
New webinar coming up October 17 with Skuid and Amazon Web Services (AWS)! Our drag-and-drop app composer, configurable data models, and easy data connections make Skuid the fastest way to build custom business applications on top of AWS infrastructure. Learn more about how you can drive results by combining Skuid and AWS. Recording 👇 Skuid Proven user experience combined with the reliability of AWS Using Skuid, create apps with intuitive user experience and the power to handle the complexity of any business problem.
2023-09-26T18:00:00Z Ready for some face time with your fellow Skuids? Join the new release highlights webinar. If you can’t attend in person, the recording will be available afterward. Register Watch the recording here 👇 Skuid Edinburgh release: Update 2 highlights Join the Skuid team to learn about new actions and interactions for more dynamic pages, custom domains on Skuid NLX, and more.
Is it possible to connect with members and create free and paid content?
Did you know that you can use Javascript to create your own custom formula fields in Skuid? My favorite are the custom aggregation formulas originally submitted by @matt.davis. You can use them to aggregate data from any model and do calculation like SUMIF or COUNTIF. I’ve been building a lot of reporting pages recently and these formulas have been essential for getting the stats I want across multiple objects and data sources. skuid.com Take your data to the next level with custom aggregation formulas Skuid allows you to do a lot of things without code. But sometimes, adding just that little bit of code can take your application from good to great. It can be that magical “missing piece” that fills any design or data gaps and makes the user...
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.