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
Hi,I have an object called “claims”. I created a lookup field on this object so i could access another object called “Payments”. This field looks like this:Now, in Skuid, i can see the payments object and see the field i’m trying to add to my table (Payment_Date). I added Payment_Date to my claims table, but I’m not getting any data to pull into this field on my table.Any ideas what I’m doing wrong?Thanks! I appreciate any help in resolving this!Kris
Is there any way to accomplish something like this?Basically, after our users are finished with a page I want to evaluate some fields and perform a few actions on the values of those fields. But the fields might change several times, and I only want to run the script once, so I can’t really use a model action… unless I’m missing something?I can create a ‘close’ button that runs multiple actions… but this doesn’t account for users closing the window. Do I have to just train our users to never close their browser windows, and always use the ‘close’ button?Thanks!
Hi Team!I’m running the snippet below from a model action (when the Status__c field is updated on the model), to create a new row: //Run this when Status is updated on model.<br>var $ = skuid.$,<br>&nbsp; &nbsp; arg = arguments[0],<br>&nbsp; &nbsp; m = arg.model,<br>&nbsp; &nbsp; r = arg.row;<br>console.log(m,r);<br>console.log(r.Status__c);<br>if (r.Status__c == 'No show'){<br>&nbsp; &nbsp; m.createRow({<br>&nbsp; &nbsp; &nbsp; &nbsp; additionalConditions:[<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {Patient_Case__c: r.Patient_Case__c},<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {Interaction_Category__c: 'Scheduling'},<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {Interaction_Purporse__c: 'No show follow-up'},<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {Interac
Is there a way that I can access the label of the current tab and render it in a template? jQuery, perhaps?I saw this thread, and Zach’s answer: var TABSET_ID = 'FruitTabs';<br>var TAB_ID = 'Bananas';<br>var $ = skuid.$;<br>var tabset = $('#'+TABSET_ID);<br>var tabPanels = tabset.children('.ui-tabs-panel');<br>var targetTabIndex = tabPanels.filter('#'+TAB_ID).index() - 1;<br>tabset.tabs('option','active',targetTabIndex); So, could I use something like…var $ = skuid.$;var tabset = $(‘#MyTabsetID’);var currentlabel = tabset.tabs [ … something here??]OR var currentlabel = tabset.children.ui-tabs-panel ??
The url param in a condition for a mobile page model doesn’t work. You can’t select anything.
I recently posted a question about using the UserRecordAccess object. The solution ended up being a web service. Well, kind of. We can call a web service that uses UserRecordAccess to pass back the user’s access to a record, and we can use that to display (or not display) a button on the page. Now we want to use the web service to decide whether or not to display the edit and delete “links” on a list (see attached image). The development team wants the “Edit” and “Delete” access to be columns in a model. I, on the other hand, am new to SKUID and don’t care how it works as long as it works 🙂 . Suggestions on the “best practice” for tackling this would be greatly appreciated.
I am having an issue with my picklist fields that I use as radiobuttons. When the field is in read-only mode they radio buttons can still be toggled/changed on the UI side which doesn’t harm anything but the user might think they are editing and cause confusion. Is there a way to keep these locked so while in readonly mode the user cannot move the selected radio?
Hi,I have a table with a model that has group logic. I’m trying to apply a manual, select option filter for the Stage Name in the table. I placed the Stage Name condition as filterable off by default, and added it to the group logic with “And” followed by the Stage Name condition number.When I select a filter option in the table, it filters out all records. What am I missing here?Thanks,Chelsea
When a field editor is in ‘edit’ mode and contains an editable template field, “tabbing” in to the field results in having to dismiss the dialog (“done” or “X”) twice. What seems to be occurring is that two (2) dialogs are rendering since after dismissing the first, the 2nd one relocates to center of window. On couple of related notes is that when the editor is in ‘edit’ mode, the template field gets the “mouse pointer” cursor indicating a single click will trigger an edit. However, it does not get the pencil icon. Also, something could be said that it should require a double-click to edit instead of single click since it really appears to be a “read with inline edit” field visually. Steps to reproduce: Create new page using sample XML Preview any account Put focus on “Account Name” field Press tab key - This will popup the editor for Template Field Click “Done” or “X” Actual Result Dialog is redisplayed/repositioned Expected Result Dialog is dismissed ** Notes ** I’m unable to repro
There are two scenarios that do not render a lookup field using the DisplayTemplate. The key to reproduce is that the editor must be in full ‘edit’ mode - not read with in-line edit. The reason is that when in in-line edit, after the selection changes, the field is automatically re-rendered back in view mode and the full re-render correctly uses the display template. When selecting a value from the built-in Skuid Lookup search popup (mag glass on right of lookup field), the value that is selected by the user always displays the “Name” field after selection even in situations where there is a Display Template on the field or even a search template. Note that this occurs even if the “Name” field isn’t displayed on the Search Popup. When selecting a value from the drop-down list, the value from the search template is placed in to the text box. Steps to reproduce: Create page using XML below preview any account click mag glass on owner field locate a different user and select the “c
Looked at some of the other time zone queries but don’t seem to resolve issue I’m having.We have a DateTime field and have a filter on this. (Tried both auto create and manual, same result). I have 2 records with the values of 2/28/2015 10:00PM populated in these fields and they are showing up as March records in our charts. The model is just straightforward based on the object.One major problem is that when we set the date filter to 2/1/2015 - 2/28/2015, these 2 records show up and the charts show “March 2015”. That’s unfortunate.I am logged in as the System Admin who has the NY (EST) time zone for this.The user record that created this was also in NY (EST) time zone.The records are shared using SF2SF and both Companies have NY (EST) as default time zone.Any suggestions?
Is there a way to create and manage reoccurring events through the calendar component? The events are on a custom object, not baked-in SFDC events.Thanks!
Account information entering in a table . fields are Agency__c (type text) Revenue_Source__c(Type=Pick-list,Values=Phone,Web,Advertise),when ever Revenue_Source__c is selected as Advertise then should show as Agency__c Field.in a table other wise hide it.$ = skuid.$; model = arguments[0].model, row = arguments[0].row , element = arguments[0].element; var valueType = model.getFieldValue( row , ‘Revenue_Source__c’ );function renderField( fieldName,defaultValue ){ var field = new skuid.ui.Field( row, model, null, { fieldId: fieldName, register: true } ), value = model.getFieldValue( row , fieldName ) ||defaultValue; console.log( field, value ); if(field && field.metadata && field.metadata.displaytype ){ //skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode]( field, value ); console.log( fieldName + ’ rendered!‘, field.element ); skuid.ui.fieldRenderers[field.metadata.displaytype].edit( field
Is there a better way to get my custom component to fire when a data model is updated? Right now we are listening for changes on the DOM - like when the save button is pressed: $('#myTableComponent .nx-actionselect .nx-actionselect-text').bind('DOMSubtreeModified', function() { certChart.init(); });
We have created a Account list view with contact Drawer. I need to export all the Account and Contact in same file. Is it possible through standard SKUID export or any code options?
I’m trying to create a skuid page to replace the standard company information page (organization object) in settings. I’m able to display the information and edit it, but when I save, I get an error that I do not have permission to edit it. However I can edit it from the standard page just fine. When i look at the model information in the console it says updateable: false. Is there anyway to change this setting? I noticed readonly is set to false as well, so changing that wouldn’t do anything.
Using the Table Filter Date Range, the date selected does not match the date used. The field is a Date/Time field and I’m certain the 1 day offset has to do with UTR time, but don’t know what options are available to make the selection date match the filter date…Please see snapshot showing date variances in a simple test skuid page.
I saw there have been 2 patches released, latest on Fri 2/27. I didn’t see anything on release notes page about these though and interested to know what they were patching. The other one was from 2/14.
Hi,I’ve tried several times to figure out how to add our organization’s logo to our statements, but i don’t see how to do this. I have a file upload component, but that doesn’t allow me to upload our logo. I found a file component in the help, but that looks like it’s for users to be able to upload things like their picture… Any thoughts on how i can just add our logo to the statement so it shows up when any user goes to print a statement would be appreciated!Thank you so much!Kris
I’d like to use this, but can’t get it to work properly.http://jsfiddle.net/bgrins/ctkY3/
Hi, My installed package shows that I have Skuid 6.8.6, but the install date is 9/11/2014. I don’t see some of the features in the Superbank launch webinar (I see charts, but not visualizations and some other things). Since the install date is from September, I’m wondering if I have a beta version?? Thanks in advance! Kris
Hi - I’m trying to add a chart to one of my pages. I followed the chart piece of the Superbank launch webinar and the steps in the help document Visualizations: Charts and Graphs. I can preview it and it looks great. But when I try to reload my page to see what everyone will see, nothing loads. It also affects loading my other pages. Any thoughts on what i’m missing? Thanks in advance!
Hi - I’m trying to get a link to a specific panel within a mobile page - something like this: /apex/ui?page=test&amp;main_panel=detail&amp;id=a0H11000008k1GF Is this possible ?
I am working on a chart that shows our new subscriptions and lost subscriptions by month on a column chart. New Subscriptions and Lost Subscriptions are two different models.I was able to get the two models on the same chart, but as you can see in the sample data below, the issue is that the max value for the two axes is different. So at a glance it looks like June’s lost subscriptions are more than double the new subscriptions.I am able to remedy this by manually setting the max value for both axes to the same amount. However, that goes out the window if I want to change the groupings to calendar quarter or year instead of month.My question: Is it possible to dynamically default my lost axes to the same defaulted value of my New axes? So in the example below, the Lost axes would default to a max of 60k. If I changed the grouping to year and New went up to a max of 500k, Lost would follow suit. Thanks in advance for any direction you can provide!
I have a custom VF page that houses my Skuid page. The VF page has headers/side bar off and utilizes bootstrap for the css stylesheet. For some reason, my popups are being rendered behind the skuid table it is generated from. When I inspect the element the popup has a z-index of 101 and the table of 100, so I’m not sure why this is happening.
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.