Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
You’re invited to Skuid 101 Training! If you’re ready to lay a solid foundation for building with Skuid, this event is for you.Get one-on-one interaction with Skuid experts in this two-day intensive, hands-on course. You’ll also make lasting connections with fellow Skuid customers and learn new ways to use Skuid to solve your business problems.Refer to our website for scheduled courses.
I’d love to be able to in the page builder lock the page from edits, and be able to see who locked the page and when. Locking/unlocking a page could be an extra permission for maybe a Skuid Page Super Admin.
Seemingly an obvious missing feature. You know … Skuid being a declarative UX builder. 😉
Requirement:Render picklist values on basis of two other picklists.for Example Picklist A, Picklist B, Picklist CRender Picklist C values every time values of Picklist A and Picklist B will be changed.Script 1: (Which user have to put on the field(Picklist C) on which user want to show custom picklist values). var element = arguments[0],value = skuid.utils.decodeHTML(arguments[1]),$ = skuid.$; //Get Lead model information var leadmodel = skuid.model.getModel(“Lead”); //Fetch first row of Lead info. var raw= leadmodel.getFirstRow(); // Get Matter type field value var MatterType=raw.Matter_Type__c; // Get WLG office field value var wlgoffice=raw.WLG_Office__c; // Perform query on salesforce object on basis of Matter type and WLG office on Lead var result = sforce.connection.query(“SELECT Name,Attorney__c,Matter_Type__c,Wlg_Office__c,Attornies__c,Id FROM Consulting_Attorney__c where Matter_Type__c ='”+MatterType+“‘AND Wlg_Office__c =’”+wlgoffice+
Apparently mobile browsers zoom in if your font is less than 16px. It would be great if the unified builder automatcally increased the font of any edit or read-edit mode components to 16px unless they are already set larger than 16px when converting to mobile.
As per this post by Zach, but declarative.
I love the feature where I can customize the search properties on a reference/lookup field. This is super helpful. We use fairly standard templates to customize these search properties every time a field that is referencing a certain model is placed in an editor. For example, when searching for accounts, we always want the name and description to display so we can verify that we are selecting the correct account. Currently I have to remember to customize the search properties every time I place a reference field. Anytime I want to tweak the templates to add or change a field or even just change the delimiters, I have to go back through and find again every single place I ever put a reference field. Inevitably this leads to inconsistency. Is it possible to set some kind of global default, or at least a default at the page, model, or field level? On a related note, I would like “Use SOSL to improve search performance” to be the default. I have to remember to change this everywhere. It wo
I’d like to be able to handle unique requirements independent of common requirements. I otherwise have constantly create unique Skuid pages. Think subtabs with Tables repeated over and over, such as Contacts, Tasks and Events. Or even the many ways in which one deals with viewing/editing/creating single records in a field editor.I can see myself creating one page contact page where using input parameters I can:1. Set the component/field mode (read/edit)2. Conditionally render Components and Component Elements3. Set a model id. This is what spawned this post. I’d like to open panel from my master page to create a new contact for the contextual record I’m on, such as an Account. Then open saving I’d like to adopt this new Contact row back into Account_Contacts model by providing the model id as an input parameter. I’d of course have to use javascript to adopt the row.Basically, I’d like to consolidate all my pages as much as possible. This is especially important when attempting to Skui
As per subject
Just like to the Chart component and Calendar components, it would be useful to have the option to run action framework after a component loads. ie. Auto open drawers in a subtab
Love the sliding panels.
“Action Sets” can be a new section below snippets. You’d have a predefined set of actions that consume events for context and can be called anywhere other actions are called from.For example:I want to create a new row in a UI only model each time any of my models are saved or have a new row created.Hypothetically, I’d be able to create an “Action Set” with the following actionsCreate new row in ui modelset row field “Model Modifed” to the model that initiated the actionset row field “Event Initiated” to the event that triggered the actionAnd add that action set to any model after any initiating events!
Would be useful when it’s desired to edit all the components on the page with the same settings. Could make for whipping up a page faster for sure. Just slap all the components onto page quickly, then do all the common settings.
I have a popup with a Table component in it where’s it’s Context is set. I’d like to conditionally render a global action when there are no rows in the table even though the model may have rows in it since the context wasn’t a match to any of the rows.
I remember Matt Sones mentioning this as well. His was about the Table component Search box enabled by default.Add to this the option to auto add the Name and Record Id fields when creating a model. I know there’s 1 or more janky objects in the Salesforce system that this is an issue for, but the person building the page can remove when necessary.I’d like to save my preferences as per preferences along with the ability copy those settings to another user.
I have a use case where the client requires an additional parameter, Year__c, be used to determine which page gets used.Here’s how I’d do it.1. Add 3 Text fields so that we can extend the functionality.2. Setup in Custom Settings to enable and label each value.3. Update Controller to accept the 3 Text fields from the VF page.4. Update Page Assignments page to conditionally render column for each enabled input.5. Update documentationSee. Easy to do. Yes? No? As a user I’d do the following:1. Enable and label Text_Input_1__c as “Year” in Custom Settings.2. Set TextInput1=“2016” in VF.3. Set Page Assignment “Year” column as “2016”This would allow for a historical display of the pages designed, which is important for this organization.I’ll other have to create a custom controller to do the same type of page assignments, which I’d really prefer not to.I’m sure others will have other reasons to dynamically use pages beyond the current capacity.
Here’s my use case. I have a chart with Task data in it to display how many hours have have been completed by who and when. When is the category. Who is the split.NOTE: I have the same data in a table below. Not using Agg model as the number of records expected will never be past 500 and so load all records on page load.Now, I have the chart setup with drill down to the selected who and when so as to show tasks categorized by Subject, as the tasks are created mostly via templates.So, I’d like to have the table update based on the above drill down point data. I could use the set condition and query actions, but then the model would have to be reset/requeried somehow when I click the “Back” to undrill the chart. Messy if you ask me. Better to have the following as no server interaction would be required.Please add the following:Action: Set Context (with option to accept chart point rows) Action: Reset Context Back button Action Framework option
Wouldn’t it be nice if page includes could be used recursively? As in I’ve had situations where am Object__c had a lookup back to itself. In this situation, a folder structure of records could be achieved, but only as deep as to the numbers of models you set up the page for.It’s similar to choosing Salesforce records. The user does it using the Name for the most part. Salesforce used the Id though to make the relationship. Record Names can be the same but still be unique records.So, I suggest setting unique Id, just like components do, in order to make model name “collissions” a thing of the past.Woot wooot!!!“Why didn’t I think of that!” - Matt Sones😃
Timesaver
When exporting data from the a table into excel, any multi-data children fields are combined into a single cell (yay!) on their parent record’s row. The delimiter between child records is a comma. The ask is to allow for a custom character delimiter, a combination of characters and special characters, and start and end delimiters, that way using “•” as the start delimiter and " " as the end delimiter would put a bulleted item on each line. The output would look like this:
When creating a new page, the “Module” field is not displayed and therefore, you must first save the page in order to then set the Module.Especially when using skuid-grunt, specifying a module is very important. Additionally, when pages are supposed to be built targeting a specific module, it is very easy for the page developer to forgot to go set the value for Module after creating the new page via the wizard.Would like to see “Module” added to the first page of the “New Page” Wizard.Thank you!
Why? Well, because I want Skuid to create a Template Component for the page builder experience that devs can save and reuse and maintain component settings with bliss. 😃The other reason is that I can’t find the damn posts that others have suggested this very same functionality. Dying for this.And to add to the Idea, I’d like the ability to dynamically feed the model and optionally context into the NEW Template Component. Presto, an “Are you sure? w/ Yes & No Buttons” usable everywhere.My use case is Lead Conversion via invocable method on both Lead Tab and Detail pages.
I’ve got a custom theme that doesn’t get used at all on one page after upgrading to Brooklyn 9.3.In order to try and figure out what the issue is, I’d like to know what the differences from the built in theme or any other theme is so I can try and troubleshoot the issue.
You can start with this as something to store on users’ settings.When adding a new condition to a model auto open the field selector.
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.