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
Aggregate models are not available in Mobile Composer yet. So I was wondering what would be the best method to aggregate my data from a model using the Mobile Composer?
I feel like I’m missing something. Are aggregate models not available on mobile? Thanks in advance!
I’m testing Skuid in an org with namespace “skuidtest1” and I’m following the tutorial to create a simple page to override the new action of a custom object and I get the error “Illegal arguments” when attempting to create a new custom object (skuidtest1__Estado__c). The custom object has the new action overriden with the VF page: EstadoNew The vf page EstadoNew has the following markup: <apex:page standardController=“Estado__c” extensions=“skuid.Redirects” action=“{!redirect}?page=EstadoNew”/> And the Skuid page EstadoNew has the following xml: Nuevo estado {{Name}} What am I missing?
It seems like I used to be able to make it so a Table Component would not have any checkboxes to select each row if I set the Table to “read only” and did not have any mass or row actions. This was nice so I could display information without giving the impression that there was something the end user could do with the rows. I tried removing the checkboxes today and they were still showing. I also looked at a table I thought I used to have set to not show checkboxes and the checkboxes are showing now. Very easily could be user error, but wondered if you could verify. Is there a way to not show any selection checkboxes on the table rows? Thank you!
when viewing a standard SFDC page, the title starts with “object name: name record name” (second tab in the screenshot attached). when viewing a skuid page, the title equals “salesforce.com - Enterprise Edition” (first tab in the screenshot). i’d like to override the tab title for skuid pages to match the format of the standard pages. here’s the visualforce page: <apex:page action=“{!redirect}&page=LeadDetail” extensions=“skuid.Redirects” standardController=“Lead”> </apex:page> <b></b>any ideas?
The following page is not behaving the way I understand it. I thought that after I updated the First_Name__c field in the UI that the ‘Name’ field should update as well. However, that is not happening. Instead its only updating when the page loads, or when I click on Save or even cancel. When I inspect the element, I want to see the Snippet running but it is not. I don’t see any of the Console.log() messages I added in the scripts. Please help!!! What am I doing wrong?
Scenario: I have a Skuid page with the following components: ‘Page Title’ - with the Save button; ‘Page Set’ - with - ‘Field Editor’, where a field is modified and ‘Tab Set’ - with different Models; in one of the tab I have the same field as on the ‘Field Editor’. How can I have the page refreshed when the field in ‘Field Editor’ is modified and Save action is performed, to update the record on the ‘Tab Set’?Thanks
how do i set the value in a user lookup field on a record to the current user with a table row action?
I have a custom object that tracks Tuition Payments. Sometimes, a student could be behind on several payments and thus the “Amount Due” would not match the “Amount Received” for that month. How would I go about creating a dynamic “Running Balance” field like the screenshot below?I’m thinking the only way this would work is if I were able to dynamically auto-number and index the rows in the Payment Table. And then assign the “Running Balance” field to be a formula that calculates a new Balance (based on the Balance of the rows that proceeded it).However, I’ve hit a brick wall and am not sure how I’d actually implement this, or if my train of thought is correct.Any guidance would be greatly appreciated.
I have a popup with page include component which is failing for a specific profile, and returns a 404 error in the console, which looks like this:It works for the System Administrator, but not for another profile with limited visibility. Is there a Profile Setting or System setting which might prevent a user/profile from loading components / snippets / resources?Any suggestions on how to troubleshoot a 404 error?
Hi i had wrote a row action in a table, a snippet will be fired when we click on row action and checks records. If records already exists it shows a message. But if records doesn’t exist then it must show a popup(include page) opens. popup must be called from a snippet if no records found. How can i call a popup page from snippet if no records exist. How can i call a popup window from snippet?? please some one help me out.Thanks in advance.
When a field in a field editor evaluates to false based on conditional rendering, an empty DIV remains that is styled with border attributes leaving a larger than normal border in between visible fields. This becomes even more apparent when multiple fields in succession are conditionally rendered out.I’ve created the following CSS that works around the issue:.nx-basicfieldeditor-item:empty { border:none;}Is it possible for Skuid to add an explicit class to the DIV when it is conditionally rendered out for a more explicit approach to identifying where to change border behavior, etc.?
The new context feature of the Summer '14 release appears to be causing bugs. If a model in a popup shares the same object as another model on the page, it seems to assume some sort of (non-existent) context and nothing appears.
We have several formula fields that we want to keep in sync with client side logic. We’ve placed these fields in field editors, tables, etc., however after updateRow is called on the field, the new value is not correctly reflected. From what I can tell, this only appears to occur when the SFDC field is read-only. I’m not certain if this might be by design, however as you’ll see below, certain situations will force the proper re-rendering of the data.I’ve granted login access and created test pages called “SampleFormulaFieldDoesNotRerenderAfterUpdateRowRepro” & “SampleFormulaFieldDoesNotRerenderAfterUpdateRowWithSecondFieldUpdatedRepro.”Steps to Prepare:1) Create an SFDC object that contains a formula (e.g. quantity, price and extended price)2) Create a object detail page- condition on URL param ‘id’- add a field editor (read with inline edit) with quantity, unitprice, extended price and a template for extended price- add a table (read with inline edit) with same fields- create cu
I was looking for a creative way to filter the calendar per view…month, week, etc… / user like you can on the day view. It is common for us to have customers that have offices with office staff that do the scheduling and they need to see all staff schedules. The problem is this works fine with the day view, but not on the month or week, because there can be 20+ persons on staff and the calendar is way over filled. If they could filter per user or other fields on the models then a view could be created that would work well. We tried grouping on the week view, but this does not work well when over a few staff members. Really like to see this as an improvement area in a future release :) (If anyone has a similar use case and has created work arounds please let me know.)Thanks! Note: This topic was created from a reply on the Filter Calendar View by User topic.
Have a date filter on a Queue component (working fine). However the date range is less than and greater than. I would like them to be inclusive less than or equal to & greater than and equal to. So if you want 09/02 records you select 09/01 and 09/03. I don’t see anywhere on the filter to specify <= & >=. thanks, jhb
If there are 2 models 1 is contactmodel and custommodel. If i create a record in contactmodel by entering a last name and first name then a record must be created in another model i.e… custommodel with name(lastname-firstname) .How can i achieve the functionality . Thanks in advance
I am trying to setup a tab view that lists Assets in our account that do not have Implementation Plans created for them. Implementation Plans (IPs) is a custom object that we create off of the Asset. When building a report I would accomplish this by doing a ‘Cross-Filter’ to say Assets without IPs or a Assets without IPs report type.I cannot figure out how to replicate this in Skuid. Since the IP is related to the Asset, there is no field on the Asset that I can filter the conditions by to show just Assets without IPs.Any suggestions will be appreciated!
Just doing some sandbox testing with 5.8 and I can’t figure out why I’m getting duplicate text fields within a single row (see attached). There is some javascript running in the background to make this work, which is now creating a duplicate entry for 2 separate fields within one row. When I hit save it executes properly and only saves one record, but obviously I don’t want users getting confused.The snippet for departure airport looks like this:(function(skuid){ var $ = skuid.$, departAirportFieldReference = ‘stack__Depart__r’, departAirportFieldId = ‘stack__Depart__c’, arriveAirportFieldName = ‘stack__Arrive__r’, arriveAirportFieldId = ‘stack__Arrive__c’, sectorNumberFieldName = ‘stack__SecNum__c’; skuid.snippet.registerSnippet(‘fromAirportRenderer’, function () { var field = arguments[0], //value = arguments[1]; value = field.row[departAirportFieldReference] !== undefined ? field.row[departAirportFieldReference].Name : null; if (field.mode == ‘read’) { //This just outputs what the s
I am using template to create a “text link” value in template is <a href=“http://www.google.com/”; target=“_blank”>google the values are repeating …?? why is this happening …???
I have a page with 3 models (parent->child->grandchild) and a custom button that executes actions - Save Models & Query Models. After completing the actions, the grandchildren model was not updated, however all the data was successfully saved to the database. If the stock “save” button is invoked instead, all models have the correct data but I believe this is because the models are not fully requeried (only changes) during a stock “save.” I have granted login access. The test page is called SampleChildRecordsNotRetrievedAfterQueryModelRepro. Steps to reproduce: 1) View page using test record of “TTP-0003” 2) Check the following and note the value skuid.model.getModel(‘TestTransGrandchildren’).data.length 3) Click the green plus icon 4) Expand the table drawer for the new row 5) Input a value for first name & last name 6) Click the green plus icon for grandchild table 7) Input a value for Information 8) Check the following and note the value - It contains 1 additional reco
This is probably something stupid, but I wanted to ask before I spend hours trying to figure it out.I upgraded to the latest skuid version this morning, and one of our pages no longer loads. Once I dug into it, I found that it was a single line in a JS snippet causing the problem:field.model.updateRow(field.row, field.id, ‘’);If I comment that out, it displays and functions normally, but this line worked before the update.Any thoughts as to why this is?
I have a drawer action defined on a table. Within the drawer is a tabset that contains a tab that is conditionally rendered. Currently when the drawer displays, the tab is always displayed for each row or never displayed for each row. It appears that this is based on how the condition evaluates against the first row in the model. I have attempted to manually update the XML to include a element in a few different ways (e.g. tab element) but this does not seem to resolve the issue. Thoughts on how to ensure that the components within a drawer are conditionally rendered based on the context row? Steps to reproduce: 1) Create a new tab page for Account 2) Add a drawer row action 3) On the drawer page, add two tabs: - Details - Parent Info - Specify conditional rendering to only display this tab if the account has a parent account Actual Result Parent Info tab is either displayed for all rows or no rows Expected Result Parent Info tab displays based on value of ParentId for each individual
http://help.skuidify.com/m/getting-started/l/102645-let-other-users-access-skuid#!prettyPhoto this function is not avalable in skuid trial version…???
Are there any good examples that can be referred for writing SOQL query in skuid in-line snippet and then show the soql results in skuid table?
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.