Upcoming Event - Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hello, I am following the Map Component tutorial to create my own custom component in Skuid. I can get HTML to render in the Builder just fine, but for some reason this HTML is not rendering on the Skuid page to which I added the custom component. I am also not seeing the Header or the Save/Cancel sections, even though I set the flags to ‘true’ on the editor. I am using the code below for the custom component. Is there something I’ve left out, or have I done something wrong in the self.draw method? Thanks. (function(skuid) { var $ = skuid.$; // Register a new Skuid Component Type skuid.componentType.register(‘spdocumentviewer’, function(domElement, xmlConfig) { // Establish a shorthand for the DOM element we will be building to, // (actually a jQuery object wrapper around that domElement) var self = domElement; // Get the name of the model we want to work with from our component definition, // as well as the Latitude and Longitude fields we want to work with. var modelName = xmlConfig.
I am having problems understanding how to setup the Calendar Component.Simple Use Case: Setup a Weekly view with available appointments. Need the available appointments to display in an available appointment color. The User should be able to schedule an appointment when there is an available time slot. Scheduled time slots should change to scheduled color.I am using the Event object.I am having problems understanding how to setup the model(s).Questions:* Should I create a separate Object for the Available Appointments?* There seems to be many different models I need to setup. For example: Valid Date Range Model, Event Source Model, Week View Group Model… [[ are all of these models suppose to be different objects. Not sure what they all mean.]]I’ve read the Calendar tutorials already, it helped, but I think I need to understand the questions above in order to implement what is needed.Thank you in advance.
A customer object have ‘number of items’ field,and based on the number of items i need to create records in item model by using the action framework…
I’m trying to update some of my pages to use the new page option “Warn users if page has unsaved changes”, but am running into some issues. On my opportunity page, I have a field editor that lets the user create a task for the purpose of logging a call at the same time as updating an opportunity. Our current business rules are that a user is only going to update an opportunity if they have spoken to the customer on the phone.However, when I enable the option “Warn users if page has unsaved changes”, it warns me about unsaved changes when I try to leave the page, even if I haven’t touched anything; that is, if I open an opportunity and then immediately try to leave the page, the warning pops up. As best as I can tell, this is because I have the task model creating a new row on page load. Are there any guidelines/tutorials on how to use the new unsaved changes warning in conjunction with creating new rows (that may or may not be utilized)? I have a few other pages that create new rows in
Do all users in my org need a Skuid license to view pages or just the admins or anyone else in charge of creating Skuid pages? I’ve searched around and checked out your pricing page and minimums but didn’t find an answer to the above. Forgive the simple question.
Looking for something similar to the “remember user’s last tab” tab set property but for the filters and sorting applied to a table. Right now, if I activate table filters then refresh the page, the filters are all reset.
I use page load snippet very often to warn users of pertinent information on the page. In this example we want to warn users when they get to a Utility Account where the “Do Not Enroll” checkbox is checked. It looks something like this:(function(skuid){ var $ = skuid.$; $(function(){ var uaRow = skuid.model.getModel(‘UtilityAccount’).getFirstRow(); var pageTitle = $(‘#MyPageTitle’); var editor = pageTitle.data(‘object’).editor; if(uaRow.Do_Not_Enroll__c){ editor.handleMessages([{message:‘Utility Account is set to “Do Not Enroll”’, severity:‘WARNING’}]); } });})(skuid);It works great however in this exapmle if the user changes the checkbox to false, the page does not reflect that change and the warning stays at the top of the page until the user reloads. I understand that obviously it is a page load snippet and therefore is not dynamic, however… It would be great if there was a way to rerun it after an update to the field that it is based off of. Is there a way to have t
I have a use case where the user wants to be able to schedule appointments using a mobile phone and calendar. Is there a Calendar component I can use in Skuid Mobile?If not, what do you all suggest. I will need to tie it up to the models and be interactive.Thanks
Hi, has anyone been able to create a row action that opens a popup window that allows the user to add a Note to the corresponding row?
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.
How would I get the name of the file uploaded in the NAC File Upload control? I want to compare and ensure that the file name has not already been used.
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.
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.