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
Hello, Does anyone know if there is a resource in the community or on Github with Snippet examples ? I’m not a Javascript prorammer but I can copy and paste very well…😉 For instance, i need one to align all fieldvalues TOP in a view and one for having the fontsize 6 pts any other examples are welcome as well Eddy
Can resources be globally set up? We have created some JavaScript Resources on a page for one of our Custom Objects that we would like to be able to reuse without having to recreate them other pages. Can this be done?
I have a parent object with children. The children all have an Effective Date, an “Active” checkbox and a Rate. I’d like to show the Rate from the latest child where the checkbox is True. This involves two criteria; it must be the Max WHERE Active = True. This can’t be done with standard rollup fields since it can only rollup the Max, but can’t also show the rate. I attempted to accomplish this by putting a rollup on the parent which shows the Max Effective Date where the checkbox is true, and then using Child Relationships with a condition of the Effective Date of the child is equal to the rollup on the parent. I got no results however. Any ideas?
Further to this post: http://community.skuid.com/t/apply_filter_and_navigate_to_tab_using_javascript In the same function, before I set the model’s condition, I want to deactivate all other filterable conditions so that I can be sure that the user is seeing the right set of data. I know how to deactivate conditions by name (as described here: http://community.skuid.com/t/manually_triggering_filters). But we can’t know for sure at runtime how many filters there are, so this is too hard-codey. And I don’t want to deactivate all conditions for the model, just filterable ones. Is there a simple property to check perhaps? Thanks … and happy new year. May it be as huge as 2013, eh? Glenn.
I wanted to check with Team Skuidify how far into the realm of hack I’m going here. We have a page that has a grid of tiles where each tile presents an infographic-style statistic beside an associated icon. Each number is sourced from an aggregate model. An example is a stat for Number of Tasks Completed This Month, or Number of New Prospects This Month. When the user clicks the tile, they’re navigated to a tab that has a table relevant to the stat and a filter is applied to return just those records that support the stat. E.g. when they click Number of Tasks Completed This Month, they go to the Tasks tab, the Completed Tasks subtab, with the table filtered to show just tasks completed this month. We have it working with a little bit of JQueryUI code that I think mimics what Skuid does when it navigates between tabs: skuid.$(“#filtercompletedtasks”).click(function() { //Get the model var theModel = skuid.model.getModel(‘CompletedTasks’); var theCondition = theModel.getConditionByName(‘
I’d like to add the standard History (field tracking) related list to my Skuid detail page. In my particular use case, I’m working with a custom object. 1. I created a model which queries the History for the object in question and filtered it for the specific detail record. 2. I added a table and put the CreatedDate, CreatedBy, ChangedField, OldValue and NewValue fields in it. The challenge is that the “ChangedField” field doesn’t display at all. 3. So I created a custom field renderer (in-line snippet) to convert the value to TEXT: var field = arguments[0]; var value = arguments[1]; skuid.ui.fieldRenderers.TEXTfield.mode; Now, however, the column displays the API name of the field that was changed. I’d like to display the friendlier LABEL instead. Any ideas how to accomplish this?
can you create a calendar with due date for tasks? When I define start date, I don’t see the due date field in Task object. I do see reminder date, but we need to show the actual due date
We’re using Skuid pages in a managed package of our own. Beyond install complexities, we’ve had a bear of a time dealing with namespace prefixes (in snippets, static resources and Skuid pages themselves). Are there any best practices, shortcuts, anything you can point us to?
I am using task tables using pretty much the code found here: Page Not Found — Skuid v15.1.6 Documentation the green check box to mark tasks complete is not working. is there an issue with the code on this sample page?
I would like to style different sections of one field editor differently (e.g. a blueish background and a green background). Unfortunately I am not able to add any CSS class to a specific section - there is no possibility to add this through the ui (maybe through XML?). Unfortunately there is also no ID that could be referenced to from the stylesheet? Does somebody have an idea to accomplish the above?
Hello, I used one skuid page in my VF page but the issue is it is not performing saving operation and only saving is coming. PFA the screenshot for it also. It is just keep showing this Saving and not performing any operation. Please tell me why this issue is coming and how we can handle it? Looking ahead for an quick response. Thanks.
When I delete an event in a calendar view, the redirect after the delete goes to a standard Salesforce calendar link “/00U/o”, which isn’t relevant for our users. How can I control that redirect URL?
We use the Account object in our app for three purposes: prospects, clients and service providers. These are picklist entries in the custom field picklist Account.Organisation_Type__c. Each of these has a specific detail page in Skuid: ProspectView, ClientView and ProviderView, and each Skuid page is housed in a Visualforce page of the same name. Whenever we render Account.Name in our Skuid pages, we want the underlying hyperlink to point to the Visualforce/Skuid page relevant for the type. e.g. if the account is a client, the URL should be “/apex/ClientView?id=01r90000000SJBc”. The question: how best to do this? I don’t think Skuid page assignments are applicable, as we’re directing traffic to Visualforce pages. We tried creating a single Visualforce page to redirect the traffic, and it works, but it’s slow, taking several seconds each time (which isn’t good enough for such a high use scenario). We could render the field via a template, but then we lose inline editing and sorting, whi
Hi all, I am trying to create a page that uses 2 queues and a detail page. For example I want to display Projects__c in the first queue, Milestones__c (related to the selected project) in the second queue and then finally a Milestone detail page for the selected Milestone. The place where I am getting hung up is with the second Milestone Queue. Couple Questions: 1) Can this queue be added directly to my first queue page or does it need it’s own page and then referenced by a “Page Include” Component? 2) How do I restrict the Milestone queue to only display? Would I use a code snippet in the Queue’s item display, a filter on the queue itself, or some other method? Thanks, Brian
Is it possible to download a skuid page as a pdf, in the same way you can download the data as an excel file?
I have a Skuid detail page with two models: meeting and invitees. I have a field set for the meeting at the top (for one record whose id is passed in as a parameter) with a related list (table) of invitees below. I have a page title at the top with an action that runs a snippet. In the snippet I’m trying to copy the value of the Subject field from the meeting to all of the invitees, save the meeting and the invitees (as the user may have updated fields everywhere), then redirect to another page. I’m nearly there, but I can’t work out the save and redirect routine. At present the only way I can get it working is for my snippet to do the field copy, then to do the save and redirect in a standard save action, which is obviously a two step process. How can I make the snippet do everything? Here’s the snippet as it stands without the save and redirect: var $ = skuid.$; // Get references to our Models var models = skuid.model.map(); var meeting = models.Meeting; var invitees = models.Invitee
Krista asked a question that I felt merited its own topic. " 2. How can we auto populate/auto-select State and Country Picklists. The picklists are a new enhancement from Salesforce . . . "
Is there a way (or a plan) to support multiple languages in skuid? Our app has gained significant momentum, and looming is the requirement to support languages other than english. This would mean tabs and table labels etc being translated. Is this possible?
Is there a way to trigger a popup from javascript?
I was following these instructions: Page Not Found — Skuid v15.1.6 Documentation and I am tweaking it to work with the Lead object and am running into a hiccup. When I click the button it opens fine and everything populate properly with the exception of the “Related To” section. I need the “Name” and “Related To” field to auto populate with the Lead ID. Any help would be greatly appreciated. Thank you!
I am working in the Leads object and I want the email address field to use SalesForce to send the email. How do I code that field appropriately? Thank you.
I want to set conditional formatting on the Priority field on the standard Task object. If the priority is High, I want to add a class to the HTML element so that I can apply custom CSS through the class. I’ve read various posts here that are similar to this need, but I’m having trouble extrapolating from them. My attempt so far is to use a custom field renderer on the Priority field in my table of Tasks and to call the JQueryUI function addClass(). Here’s my inline snippet that I’m using as the custom field renderer. Am I in any way on the right track? var field = arguments[0], value = arguments[1]; if (field.mode == ‘read’ && field.value == ‘High’) { field.addClass(“highpriority”); }
Is it possible to include a Chatter Feed in a popup? When I select my popup in the page builder, the Chatter Feed component disappears, so I suspect it can’t be done. Doesn’t stop me wanting it, of course.
In the mobile builder lists a number of divs within a deck and I want to redirect and pass on parameters such as the Id from the record clicked. What are the merge codes to get these. What I want to do is start with a page where I list all active campaigns. When clicking one of the campaigns I want to redirect to a page with all campaign members for the clicked campaign. I can test this by hardcoding a merge field like /apex/skuid__UI?page=EventPlan2&cid={{$Model.Campaigns.data.2.Id}} However I can’t find how to dynamically change the 2 to the record that got the tap. Maybe there is a better way of doing this by having two panels and reloading the Member model. Suggestions are very welcome.
I have a user entry field that has date/time as the data type. I would like to set the default value to Now() when adding a new row in a table. The user can change the value if needed.
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.