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
This basically stems from me being in a hurry. I want to be able to cut/copy and paste components, field editor sections, and maybe even fields from the page composer without going into XML (using command c, x, & v).
In the Skuid Wizard Webinar (https://www.youtube.com/watch?v=r1eCaomPrPc), Matt demoed a very cool Opportunity Dashboard with charts and custom styling. At the end of the webinar, someone asked #dinosaumachine if the page XML could be shared and was told NO. I took this as a challenge and over lunch (and a very bad sandwich) was able to get this going. I will leave it to the reader to flesh out remaining details (Pat want to take next stab?). <skuidpage unsavedchangeswarning="yes" showsidebar="false" showheader="true" tabtooverride="Opportunity"> <models> <model id="Opportunity" limit="100" query="true" createrowifnonefound="false" sobject="Opportunity"> <fields> <field id="Name"/> <field id="CreatedDate"/> <field id="Amount"/> <field id="StageName"/> <field id="CloseDate"/> <field id="OwnerId"/> <field id="Owner.Name"/>
This is new version of previous blog post how to, with one improvement. A snippet that can dynamically cancel associated model in a popup.http://www.mblazonry.com/creating-a-new-opportunity-in-salesforce-using-only-one-model-2/
It would be awesome to make the interface for building page includes a bit more intuitive.What if when I selected a skuid page, the builder could automatically pull in the url parameter names that the page’s models ask for, and display a text box for each of them? It would save us from opening the page we want to include and scrolling through the model conditions to make sure we have the right params.Also, it would be sweet if we could set the actual query string for each param the way that we set values for conditions (i.e. field from a model), instead of just using global merge syntax every time. Happy skuidifying, everyone!
Just like date range but with numeric/currency fields.
Grouping logic on model conditions are awesome. It would be nice if we could apply grouping logic on lookup filters as well.
What if you could allow users to save filters they’ve set previously so they can quickly return to that view? Think of Saved Searches in Evernote but for a Skuid table.Example… I’m a sales person and I segment my prospecting list by:CMOs in NYC Product leaders in NJ Existing clients So you would be able to flip between each of those views without having to separately set those filters each time.Just an idea similar to how users could create a Custom View on the Contacts tab and generate that list.Thanks
Hello -There has been some discussion about not being able to have a Page Include appear on a Page multiple times. One of the primary challenges we face (and it appears others as well) is that often times the same “concept” (or extremely similar differing with conditional rendering) is needed on a page (e.g. in a drawer) or on different pages. There has been discussion in the past regarding the ability to build a “component library” but currently, the only way to achieve re-use is via Page Includes or custom components.One of the main obstacles for allowing multiple page includes this is that models are merged by name and since a page include uses the same model - well, let’s just say some problems could arise. Idea - Would it be possible when pulling in a page include, to adjust the model names in the included page appending the page include _GUID? For example, if Page Include has a Model of “Account” the merged model would be named “Account_246.” The xmlConfig of the page would
I find myself unchecking the Show Save/Cancel box almost every time I add a field editor. Can that be the default?
It would be really cool to be to have panels that can be collapsed w/ a desired collapse direction with a uncollapse button when collapsed.
When using Rich Text Area Fields and the CKEditor that Skuid has I would like to correct the “Enter Key” Mode that CKEditor uses. By default SKUID places tags when you press enter. I need to change the Mode to use tags. This is possible with the CKEditor as the link describes below. When I try to change just that one setting it messes up the whole editor and the data is gone. Skuid, How can I adjust the default Enter Mode successfully on the Skuid CKEditor Rich Text Editor? http://ckeditor.com/latest/samples/plugins/enterkey/enterkey.html The Javascript code I tried is: $ = skuid.$; $(document).ready(function() { CKEDITOR.replace( 'cke_editor1', { enterMode: CKEDITOR.ENTER_BR }); }); This is needed due to the enter key spacing mismatch from the fields to export in html for word, email etc… My users enter data and run a Drawloop document merge and the data comes over like the Rich Text Editor displays to them EXCEPT for the Enter Keys they hit.
Here’s the comment “queue’d” up. 😃Here’s the use case.
So here’s the deal, I often have to clone rows in a table via Javascript. Some purist would argue that it should be done via Apex (and I agree), but I’ve been told to use Javascript. Eventually it was getting annoying to write all of these various snippets for various objects that pretty much did the same thing. I decided to outsource the snippet to a static resource and call it with the various differences passed in as arguments. I registered a snippet called “clone”. // utility snippet for easy cloning of rows. arg[0] = row/model etc. arg[1] = other model api name arg[2] = JS Obj with name -> value pairs skuid.snippet.registerSnippet('clone',function(){ //this is beautiful code - JA console.log(arguments); var params = arguments[0], item = params.item, dataRow = params.row, dataModel = params.model; $ = skuid.$; console.log(arguments); var modelName = arguments[1];//pass in the other model name as the second arg var customMap = arguments[2] || {};//custom mapp
Conditionally render “required” only if field is empty
Right now, the automatic assignment functionality is great if you create the user in a specific role. What if you could move someone into a profile and that triggered the permission set and license assignment?Example:IT creates all users and dumps them into a default user Profile.Ops moves the user into the appropriate Profile which triggers the license and permission sets to be assigned.
Right now, when picking dates for the categories on a chart, you are only presented calendar years/quarters. We are offset by a quarter so calendar Q1 is our Q4 - big difference in urgency! It would be great to be able to chart based on Calendar OR Fiscal years.
I think we have all seen a message like this. Usually for me it happens when I am deleting fields that might be on the SKUID page especially if I am in active development of the SKUID pages and the Objects at the same time. Since SKUID knows exactly which model field is missing it would be awesome if there was a link that we could click on (as part of the message) that when clicked would remove the field and reload the page. This would be a bit quicker than going to the model and removing the field manually.
Is drag/drop rescheduling supported in the calendar month view? I have it working in week view, but nothing happens when I try to drag it in month view.
Hey fellow Skuid-ers, No, this is not a gratuitous post. No need to Like. Felt that I needed to give a nod to the AF. What I just did declaratively would have required me to write lots of Apex trigger code and unit tests sans Skuid. Just say’in. Regards, Irvin
We need to create a new field on skuid__Page__c to indicate the current status of the Page we are developing. For example from Dev to Staging to Production.However this cannot be saved to the Page layout as we don’t have permission to do it.There is no viable work around for this because changing the page name to be “XXX - Dev” or change the module to be “Dev” will create a new duplicated page.Thanks for any advice.
I know, I know… I can just use a Page Title component button. 🙂Still, it would be handy, and while you’re working on conditional rendering of table columns, seems like it wouldn’t be too hard to add.
Apparently Skuid and I have very similar tastes in music. 🙂http://help.skuidify.com/m/11217/l/121143-why-build-your-app-with-skuid#!prettyPhoto
This would be super handy.Not my idea, but I figured it should be its own ‘idea’ thread: https://community.skuid.com/t/call-snippet-from-snippet
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.