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 All, Has anyone ran come across this issue in mobile?When I click on a wrapper / division / panel etc…I can no longer seem to configure it. This was not an issue a few days ago. I have provided a screenshot video showing the behavior. http://screencast.com/t/IjwOdKqIHrI tried a different browsers and no success (Chrome and Firefox ) I also cleared my cache and history Thank you!
This field renderer has been working well for us for a long time and now it isn’t. I wonder if it is from a recent update?//var field = arguments[0],value = arguments[1];var currentDate = new Date();skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;if (skuid.time.parseSFDate(value) < currentDate) {field.element.css({‘min-height’:‘30px’,‘color’:‘red’});}//It is supposed to turn the text red if the date is in the past. The date just looks normal now, even though it is in the past.
I have a formula field called ‘to’ on a REST model with an Insert (POST) action.The formula is just merge syntax to access the value of another field: {{$Model.PrayerNet_Defaults.data.0.PrayerNet_Email__c}} The data I’m requesting exists in the model. From the console: skuid.$M('PrayerNet_Defaults').getFirstRow()<br>Object <br>Id: "a0O1a000003EWZHEA4"<br>Id15: "a0O1a000003EWZH"<br><b>PrayerNet_Email__c: "admin@compasscare.info"</b><br>PrayerNet__c: true<br>Use_Three_Tensions_Model__c: true<br>attributes: Object<br>__proto__: Object But the formula field is not returning anything.‘to’ isn’t in the list of fields in the model.Any idea what’s happening here?What should I look for?Is there a different way to get the value into the model?I tried to just set the default value with merge syntax instead of using a formula, but that didn’t seem to work, either.
I want to ensure that the user does not select an end date before the start date. In this scenario, both dates will already be populated (editing an existing row in a calendar pop-up).I’m using the approach outlined here to use a custom field renderer to override a datepicker:https://community.skuid.com/t/override-the-standard-date-picker?topic-reply-list%5Bsettings%5D%5Bfilter_by%5D=all Specifically the minDate attribute as discussed here:https://community.skuid.com/t/how-to-disable-the-dates-in-datepickerHere is the code for the custom field renderer: var field = arguments[0],&nbsp; &nbsp; sdate = arguments[0].row.Start_Date__c; //datetime field<br>&nbsp; &nbsp; value = arguments[1],<br>&nbsp; &nbsp; $ = skuid.$;<br>skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value);<br>//convert to js date<br>var jsStartDate = skuid.time.parseSFDate(sdate);<br>console.log(jsStartDate);<br>if (field.mode==='e
I am looking for information or experience that folks have with Skuid and multiple users/developers working on a common set of pages for a project. I have used the Skuid features for copying and pasting XLM between pages and packaging pages as static resources.However, I am looking for experience that folks might have had around the development process in which multiple Skuid developers are editing the same page(s) and deploying into a production environment for a customer. Related, from my initial searches I havent found information around best practices for this or how Skuid works in general when multiple developers are editing the same Skuid page.Any pointers or shared experiences would be much appreciated.Thanks,Richard
Only getting this for a Partner Community User. This error is only showing up in the console, and it’s preventing saving of one but not all models. I’m also having trouble loading a particular model, it just won’t load for the partner user. The field editor has a custom template edit popup that I think might be causing the problem, looking at the full error message below. This template field shows child records, and the custom edit popup lets you add, edit, and remove multiple child records. Here’s the full error messag and a screenshot of the first part of it. Something about merge and COMBO in there makes me think it might be related to that custom template edit popup getMergeResult@[skuid\_\_SkuidJS:26](https://full-ests.cs42.force.com/partners/resource/1459461176000/skuid__SkuidJS "Link https//full-estscs42forcecom/partners/resource/1459461176000/skuid\_\_SkuidJS")merge@[skuid\_\_SkuidJS:25](https://full-ests.cs42.force.com/partners/resource/1459461176000/skuid__SkuidJS "Link https
I need to create a parent record (for example, account) and one or more child records (for example, contacts) all on one page. The page has a field editor for the parent and a table for the contacts. I want to be able to click the save button and the parent will be created and then the contacts will be created and associated with the newly created account record.How can I accomplish this?
Hi ,I am new to skuid and I have an execute javascript button on Courses__c custom object it’s related to Lead.I have tried to write javascript snipet code and I made some changes to my code but it doesn’t work for me. So could you please help me to create custom button in skuid with above code.And my button code is {!REQUIRESCRIPT(“/soap/ajax/22.0/connection.js”)} var updateRecord = new Array(); var myquery = “SELECT Id,Centre__c FROM Lead WHERE Id = ‘{!Lead.Id}’ limit 1”; result = sforce.connection.query(myquery); records = result.getArray(“records”); if(records[0].Centre__c==null) { alert('Please select Centre on Enquiries ') } else{ window.open(“/apex/AddNewCourse?leadId={!Lead.Id}”,“_self”); }Thanks.
Hi Team,I need to provide access to a Clone button when the current user has been added to a particular group. Only certain user can create a clone of the record. Please suggest…
Is it possible to “log a call” in mobile after the user taps on a phone number that initiates a call from within SF1 in a skuid mobile page?
When buttons in a wizard have conditionally rendering applied, after the button has shown at least one time, it is never fully removed when its condition evaluates to false. There is a small piece of the button image still visible, it’s clickable and the button responds to hotkeys when it has been conditionally rendered out. Steps to reproduce: Create page using XML below preview page picking an account Expected = Actual “Not Option 1 (Ctrl+Shift+M)” shows, “Option 1 (Ctrl+Shift+L)” does not show and there is no button fragment showing nor does it respond to hotkeys Change Mode to “Option 1” Press Ctrl+Shift+M Expected “Not Option 1” is completely hidden/removed and does not respond to hotkey Actual There is a button fragment visible, the fragment is clickable and hotkey is fired Change Mode to “None” Press Ctrl+Shift+L Expected “Option 1” is completely hidden/removed and does not respond to hotkey Actual There is a button fragment visible, the fragment is clickable and hotkey is fir
Hi, it seems the setting for Default Value on UI-only Fields does not work Whatever value i set there, field always shows blank thx
Hi,How do we restrict the skuid popup to not to close on ESC key press ?Which event and how to catch in javascript snippet for that popup ?
Is there a way to change the visible week on the Calendar Component using Javascript? Basically, I have a Page Title with “Previous” and “Next”, and I’d like to use these buttons much like the default week-to-week navigation - but with the added potential of using the Action Framework too. Is there a js function that I can use to change what week the Calendar Component displays?
I would like to remove the left and right arrow form the skuid calender month view. I am just showing only current months events and not interested that user clicks previous or next month. How can we achieve that?
Hi Is it possible to have more than 1 Field Renderer on 1 specific Field? My use case: I have a UI-only field with a existing Field Renderer for OnChange handler, and I want to apply the Slider Renderer to that field as well I tried many combinations and even tried to duplicate fields, and assign 1 field renderer to each, but the onchange handler would not work … In case useful here are both Snippets Onchange Handler: var field = arguments[0], value = arguments[1], model = field.model, row = field.row, $ = skuid.$; field.element.change(function(){ //some actions after the value of the element has changed skuid.snippet.getSnippet(‘addDays’)(); }); skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value); Slider: var params = arguments[0], $ = skuid.$; var field = arguments[0], value = arguments[1], $ = skuid.$; if (field.mode == ‘read’) { skuid.ui.fieldRenderers.PERCENT.read(field,value); } else if (field.mode == ‘edit’) { var amt = $(‘&lt;div class=
I’ve found a CSS rendering bug in the builder’s actions tab. Something about overflow. See the video below for a demonstration and a quick fix…
I can’t figure out what is going on here. I have a custom picklist field on the contact object. It has always worked as expected. Now, when I go to either of two tables that display this field and try to do inline edit, only one of the 6 values displays as an option in the picklist drop down. I don’t have any conditions or actions that would effect this. Anyone else have this problem?
On more than one occasion I have needed to change the data that is displayed inside of a donut graph. I asked HighCharts if this is possible and they pointed me in the right direction. I am still a newbie with JavaScript so I am unsure how to alter the code to work in Skuid. If some one could help me out with this it would be great and I think helpful to others.Basically, setting the snippet as a before load action on the graph should change the center data with the title data. I want to use a merge syntax so the information is set dynamically. Example: - http://jsfiddle.net/qq6o1ma1/ Docs: - http://api.highcharts.com/highcharts#Chart.setTitle
I am running a snippet from a group of global actions. To dynamically change content, I need to know which one was clicked. I tried I few things unsuccessfully and therefore need the help of the community. Thanks.
I have a tab set with quite a few tabs, see below. I am concerned that the users will not be able to see what tab is currently selected. I would like to have some way to help the currently selected tab stand out, like change the color or make it bigger, etc. Seems like this would be a pretty common request. Any thoughts?
Couple of issues with using Run Custom Apex Action:1) After choosing an action, Skuid displays the parameter list. From there, if you change the action, the parameter list does not update to reflect the newly chosen parameters. You need to click somewhere else an come back to the Run Custom Action to see the correct parameter list.2) When attempting to pass a List of SObjects in to an invocable method, Skuid does not accept {{$Model.MyModel.data}} or any other attempt - it always just clears out the value. Invocable methods support lists of concrete SObjects. I had asked the question at https://community.skuid.com/t/is-it-possible-to-pass-model-data-to-invocable-method?rfm=1&topic_submit=true to see how to achieve this but no reply so “bumping” here since its on the same topic as #1. I’m hopeful that Skuid cleanses the rows and passes them to the invocable method - is this current unsupported?Thank you!
Is there a way to dynamically change the background color of an Edit field? the default is a lovely gold color, but we would like to vary this color for some fields as a way of highlighting the contents.have a render snippet and have applied changes to the field.element.css background color but this is being overriden by .nx-field and dont seem to be able to change this.thanks
When using a snippet to render a field with Skuid’s Javascript UI Field Renderer e.x. skuid.ui.fieldRenderers.TEXT.edit( arguments[0], arguments[1] ); it displays quotes as &quot; (its HTML representation) and not as " (in the actual HTML its &amp;quot;)
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.