Company Annual Virtual Conference
FORUM POSTS AND DISCUSSIONS
Recently active
(via zachelrath on github.com/skuidify) “HIGH PRIORITY. If a record is Locked by an Approval Process, we should show this in Skuid. We can check this by querying the ProcessInstance table where TargetObjectId = objectBeingEditedInSkuid. If an Approval Process is defined for a given Object, a “Submit for Approval” button should be able to be added to that Object. This should kick off an Approval process in Apex. We can dynamically instantiate Approval processes in Apex, I believe, because ApprovalProcesses are interfaces in Apex.”
It seems like the standard field render for picklist does not take record types into account. If i display a table of opportunities and edit the stage field the picklist will display all picklist values and not only the ones valid for the opportunity record type. Is there a way to get SKUID to only show the correct stage values?
I was working on a form and deleted a field set by mistake… I don’t suppose you could offer undo ?
(via EvanDonavan from github.com/skuidify) “Can a Skuid page be rendered as PDF using the Visualforce renderAs property? If not, would that be difficult to add? My proposed use case is for a custom student transcript page that I would like to create for which I would like to include a table of the student’s courses taken, sorted by term, and excluding any that have not yet completed. I could write custom Apex code to do this, but it seems like the Skuid models could generate the necessary SOQL for the filter conditions without that. It just wouldn’t be a PDF currently.” Developer Zach replies: “This would be a killer feature to have. We’ll look into it!” and “We’re considering adding an option to the Skuid Table component to allow its data to be exported as PDF – we could definitely pursue additional components / entire pages being rendered in this manner in the future.”
I’ve been caught a couple of times by leaving the page design page without saving my changes… and losing them all Can you give a "do you want to leave this page and abandon your changes " warning ?
Because SKUID makes it possible for smart users to do the kind of custom form design that previously it would have taken a developer to write code for (and the user I have doing this is ESTATIC) it also brings along a problem… he and i might decide to work on the same form at the same time. Could you introduce a “locked” flag on the SKUID pages form that would let us lock pages. A locked page would only accept design changes by the user who locked it. Other users would get a warning message… and I’m assuming…there would be some kind of visual signal in the list of pages on the pages form. Thanks And I emphasize the importance of being able to work on forms himself for this user… this is a big feature of your product and you should make the most of it… you have seriously extended the areas of a custom project that can be done with “no code”
It’s not possible to have a Lead form submitted by SKUID via sites to automatically run assigment rules. To solve this I created a trigger + class that runs assignment rules if a custom checkbox (hidden from users) are set to true. Maybe this quick fix can bee of use to someone else. See the code below: Trigger ------------ trigger ReassignLeads on Lead (after insert, after update) { List lIds=new List(); For (lead l:trigger.new){ if (l.IsConverted==False && l.Run_Assignment_Rules__c==true){ lIds.add(l.Id); } } if (AssignLeads.assignAlreadyCalled()==FALSE){ system.debug('Assign already called? '+AssignLeads.assignAlreadyCalled()); AssignLeads.Assign(lIds); } } ----- Class ------- public with sharing class AssignLeads { static testMethod void AssignLeadTest() { //Basic code coverage test code - improve with bulk + asserts List TestlIds=new List(); Lead newLead = new Lead(company=‘Testco’, LastName=‘TestLast’, FirstName=‘TestFirst’, Run_Assignment_Rules__c=true); test.startTest()
Similar to Chatter Feed view in standard Salesforce enhanced lists, it would essentially show all Chatter items associated with any of the records in the table, ordered by Post Creation Date, for the Last 30 Days.
Is it possible to nest within the table. So for example, I have a related list called Task List where there can be many task lists associated with the primary detail object record that is controlling the page. I can create the list view of all the Task Lists. Is it possible to display all the Tasks (activities) related to each individual Task List. This would be similar to grouping by in a report for sfdc
It’d be great to allow users to customize the look of Skuid. Either allow them to use their own custom stylesheets or build a mechanism for them to customize the styles within Skuid in a manner similar to jQuery UI Theme Roller (ThemeRoller | jQuery UI).
Sometimes to help us debug your Skuid pages, we’ll need you to post the XML to the community. There are two ways to do this. 1. The first way is to wrap your XML in the following HTML tags <pre><code> </code></pre> Here is an example of me using the first method <skuidpage showsidebar="false" showheader="true" tabtooverride="Skuid Central"> <models> <model id="Events" limit="100" query="false" createrowifnonefound="false" orderby="LastModifiedDate DESC" sobject="Event"> <fields> <field id="StartDateTime"/> <field id="EndDateTime"/> <field id="Subject"/> <field id="WhoId"/> <field id="Who.Name"/> <field id="Type"/> </fields> <conditions/> </model> <model id="Contacts" limit="100" query="true" createrowifnonefound="false" orderby="LastModifiedDate DESC" sobject="Contact"> <fields> <field id="Name"/> </fields> <conditions> <condition type="fieldvalue" va
Add “Role” as a Page Assignment option (in addition to Profile and Org Default). The difficult thing here is: which takes precedence, Role or Profile? The standard “assignment” hierarchy goes like this — think Hierarchy Custom Settings): Org Default Profile User (not currently supported in Page Assignments, but Since Users have both a Profile and a Role, we would either have to do one of the following: Arbitrarily place Role either above or below Profile in this hierarchy (unless someone can give an argument as to whether above or below is NOT arbitrary) Add Role as another dimension to the Page Assignment processing. This would: Not require making an arbitrary prioritization of Role vs Profile. Would massively increase Page Assignment flexibility - but also introduce complexity - which we could eventually remedy with a more easy-to-use Page Assignment “matrix” editor or improved UI. With this in place, though, we could actually differentiate by Profile and Role - e.g. there would
Welcome Skuid Community!You will find links to all your Skuid Resources here: https://nintex-us-sandbox-community.insided.com/p/Skuid_UsersThe Skuid Community content has been migrated into the Nintex Community and other Nintex areas. Please view the table below to see where your content is:DRAFT!!!!Skuid Community Nintex Community Questions Forums Discussions Forums Announcements What’s New? Skuid User Groups Groups (Should we list them here?) Site feedback Report a defect Nintex Support Ideas Nintex Ideas If you cannot find a specific article, please use the Search bar.For Community questions please email: community@nintex.com Skuid Skool is still available here!
I’m new and i don’t know where to find the Skuid community content.
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.