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
When a popup is displayed in the model event ‘new row created’, a javascript exception “cannot read property ‘0’ of undefined” is encountered. Notes The popup is triggered when a “new row” is added to model if the model is marked to “process client side” the exception is NOT encountered Removing the field editor from the popup leaving only the page title, and the popup properly displays without encountering an exception Steps to reproduce: Create page using XML below Preview page Expected Behavior Popup displays Actual Behavior Javascript exception encountered Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="false" createrowifnonefound="true" sobject="Account" adapter="" type="" doclone="" processonclient="false"> <fields> <field id="Name"></field> <field id="CreatedDate"></f
I have a table that has 2 conditions that are always on and 3 conditions that are off by default. The model for this table has a max# of records at 100 and is being ordered by one of the off by default conditions.When I go to load more with this setup, it will only load 178 records when it should really be 200 records. It is excluding records I know exist.If I leave the order by blank, it will pull in the 200 records when I load more. Why would this happen and is there a way to sort and still pull in the correct records?Thanks.
Is there a way to show the count of items selected in a multipicklist rendered as checkboxes?The standard renderer does this for you when you’ve selected 4 or more. How can I access that value?
My button for building page assingment packs isn’t working, and it looks like it’s because I don’t have the snippet skuid.pageAssignments.packAll. I’ve attached what the snippets look like for my “Page Assingment” page. Could someone send this my way or give any insight into why its not triggering?
I’m new to all of this. I trie to use Dhtmxl Ganttchart (jquery) as a project-tool. There is no problem in retrieving data from models but when i make changes i dont know how to save them back into SF. var element = arguments[0], $ = skuid.$; element.html(‘’); $(document).ready( function() { var omrModel = skuid.model.getModel(‘Omrade’); var omrId = omrModel.data[0].Id; console.log(omrId); var omrTask = {id: omrId, text: omrModel.data[0].Name, open: true, type:“project”, /color: “colorcode”/}; console.log (omrTask); var doModel = skuid.model.getModel(‘Delomraden’); var doTasks = ; doTasks.push(omrTask); var aoModel = skuid.model.getModel(‘AO’); $.each(doModel.data, function (i, doRow){ console.log(doRow.Name); doTasks.push({id: doRow.Id, text: doRow.Name, open: true, type:“project”, parent: omrId}); doTasks.push({id: ‘P’ + doRow.Id, text: 'Projektering: ’ + doRow.Name, start_date: doRow.Start_projektering__c, end_date: doRow.Slut_projektering__c, open: true, type:“task”, progress: doRo
When I look at an application (custom object ) in cl originate and click on the skuid tab(application detail) under it - nothing comes up? Other skuid page tabs are working fine . What can be the problem?
I’ve just upgraded an org to 7.20, and in a number of pages, the page editor is not displaying field names correctly. For examole, I have tables whose columns appear as “Unknown field”; when clicked, its looking at the right field, and it even works correctly when using the page, but it makes editing a page more difficult. I can’t see anything untoward in the XML view, and its not just tables - I’ve seen it in a field editor in a pop up as well. I’ve just had an idea that it may have something to do with rendering options, but I’ll need to wait until I’m back at my laptop to check…
I have a rich text field called ‘Executive Summary’ which is used in a popup, and gives users a really pleasant experience when typing data into this field. I’m just testing this functionality in Banzai before upgrading, and it seems that the behaviour of the rich text field / CKEditor has changed. This was the UX in Superbank: And this is the UX in Banzai (Sandbox): I should add that the field is being rendered by a custom field renderer similar to what is outlined in this post: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]); field.options.ckEditorConfig = { uiColor: '#CCEAEE', height: '400px' }; skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value); Is there any way I can get it back to the user experience that was happening pre-Banzai?
This is not a “I’m getting a heap size error, help!” post - I know about this issue, but I’m trying to get an deeper understanding of the causes.I have a page that can end up showing a lot of rows in a table after a button is pressed and a model gets queried. There aren’t any body fields returned in the model, it’s about 30 fields that are dates, strings, etc.I’ve reached a point with the page where I’m getting Apex heap issues. I’ve been able to handle these in the past with a few tricks - but I’m all out of tricks.I’m a bit confused because, if I take the SOQL query as per the model in the debug log, plug it in to the developer console and check the heap size there, the heap size is about 1MB. What happens on the server that causes an increase in size by such an amount? I’m not questioning the Skuid’s technical capability - far from it, I’m sure there are reasons for it. But I am curious as to why this happens. I’ve had similar things happen in the past where literally including one
I’m having an issue displaying content documents in a table. There are many content objects. I tried Content Documents which got me just about everything I need except that it doesn’t have a Parent Id. I then tried AttachedContentDocument and I get the following Error if I try to put it in a model: “1. An error occurred while attempting to perform the following SOQL query: SELECT LastModifiedDate,ContentSize,ContentUrl,ContentDocumentId,ContentDocument.Title,CreatedDate,CreatedById,CreatedBy.Name,FileExtension,FileType,LastModifiedById,LastModifiedBy.Name,LinkedEntityId,Title,Id FROM AttachedContentDocument LIMIT 21 Error:entity type AttachedContentDocument does not support query” I then made a table out of the parent object “Patient” and it lists the attached content documents in the table, but I can’t link to the actual file. I see a tutorial on how to upload files to Chatter/Content and that seems to work well, but I can’t get linked content documents to display in a table with live
I have an org with a number of pages that are in a particular model. I select to filter on that module, and not all pages are shown.I’ve checked that the page type and created/modified filters are clear. I have 31 pages in the module - this is confirmed in a report. On the “Pages” Skuid page, when I select the module, I’m shown the first 25, when I click Load More, I only ever get as high as 29. I’ve actually seen the number fluctuate slightly, though I’m not sure as to why.
Using in-line Javascript, a field in one of my models is returning a “Date” type field from Salesforce using getField on the model. When I display the field using an Alert, Javascript tells me its an object Object. On the Skuid page, the field is rendered at a datepicker. I want to use the date field in a calculation against the current date using javascript in order to perform some actions. I don’t want to display the date in the Skuid page. Problem is, how do I get the date out of the date object using Javascript? I’ve tried many ways, including skuid.time.parseSFDate and nothing is working.
Last week, I added two new values to a multipicklist in SFDC (overwhelmed and shocked). Here is the list: However, in runtime today the field looks like this: The new values are not there. I haven’t overridden the metadata or done any customization beyond giving the field a custom label. I tried removing the field from the field editor and adding it back. I tried refreshing the models metadata in the builder. Nothing. Help?
Is it the case that Lightning Experience must be enabled to install Banzai? If so, we have a problem in one of our orgs and I suspect you will run into this for the Push as well.We are getting the below error in our Developer org when trying any of the Banzai packages. At first glance this looked like it might be related to Lightning which we had not enabled. Tier 3 support just phoned and let us know that since we had enabled Person Accounts in that org years ago, we cannot add Lightning Experience. So does this mean we cannot use Banzai either? This is our Packaging org so would be moderately unfortunate.Thrown: common.exception.SalesforceGenericException: org.auraframework.throwable.quickfix.DefinitionNotFoundException: No THEME named markup://one:oneTheme found : [markup://packaging:ipLanding, css://packaging.ipLanding, markup://packaging:packagingTheme]I granted Login access to org 00DE0000000dq2O if anyone from Skuid wants to sniff around.
We had a script written to update the URL of the page to the TabID so that when the user hit refresh it would reload the page. With the introduction of the actions now on the TabSet, this has failed so we are trying to rework this code into the new Actions screen.My question… How do I obtain the TabID so that I can update the HREF with the bookmark when calling a snippet from the Whenever Shown action?This is the call that we used to have working, when we registered the tab click event. window.history.replaceState(null, “Offender Profile”, “Offender_Template?id=” + id + “#” +tabId ) Thanks you in advance
Several users are not able to load a certain page include in IE or Firefox. I tested in IE11 and confirmed that the include returns this console error: Works fine in Chrome. I believe that the problem may be with this custom field renderer: 'renderTime': function (field, value) { var formattedTime = $t.formatTime("h:mm a", $t.parseSFDateTime(value)); skuid.ui.fieldRenderers.TEXT[field.mode](field, formattedTime); }, Where $t = skuid.time, and the field in question is a DATETIME. It is me or is it skuid?
Date field using custom field renderer snippet has stopped working. It used to work fine before. Now it has stopped working and gives an error message saying required field value is not populated when trying to save the record.Below is the snippet: var field = arguments[0], value = arguments[1]; //set Contract expiry date to 365 days from today var c=new Date(); c.setDate(c.getDate()+365); var cYear=c.getFullYear(); var cMonth=c.getMonth()+1; var cDay=c.getDate(); value = cYear+"-"+cMonth+"-"+cDay; skuid.ui.fieldRenderers.DATE.edit( field, value );<br>
So I’m trying to create a custom header that looks really nice, suddenly I look up and see a great looking header! Would you guys be able to share the configuration for the skuid header?? I have been messing around with various combinations and it would be nice if you guys could share how you built your own header. Right now I have Header -> Responsive Grid -> Navigation, but I could use a cleaner setup. Thanks.
I built custom buttons on many Salesforce pages to view the skuid page version of those pages. Where are those buttons in the new “Lightning Experience”? Any idea?
Hello friends. I’m trying to add analytics tracking to my skuidified force.com site, but without success. Followed the instructions here: https://help.salesforce.com/HTViewHelpDoc?id=sites_analytics_tracking_code.htm&language=en_US All my sites VF pages now have bothsite:googleAnalyticsTracking/ and <skuid:page …> Google can’t find my pages. Any chance skuid doesn’t play nice with the site:googleAnalyticsTracking/ tag?
I am trying to create a POST redirect Mass Action button for a list. When I select records in my Skuid page and click the redirect mass action I created I get an error message “You must select at least one ‘In Progress’ document”. I have double checked and the records I am choosing are ‘In Progress’.Maybe I am missing something that I need to update in the URL. Has anyone had success in creating a POST mass action list button? This is the URL:https://ffbext.cs10.visual.force.com/apex/codabecashentrybulkposting?retURL=%2Fa1q%3Ffcf%3D00BU0000003AnRA%26rolodexIndex%3D-1%26page%3D1&wrapMassAction=1&scontrolCaching=1Thank you!
Hi using this skuid.$M(‘model’).data[0].ui_richtext always returns undefined. Other types of UI only fields work fine using this syntax. Any pointers?
A have a date field I convert to a string text field I and then converting to a datetime field. The {varTemp_Date_Time_End_No_Time} is 2015-10-28 DATETIMEVALUE (Text(YEAR( {!varTemp_Date_Time_End_No_Time} )) & “-” & Text(MONTH( {!varTemp_Date_Time_End_No_Time} )) & “-” & Text(DAY( {!varTemp_Date_Time_End_No_Time} )) & " 23:59:59") In the output datetime field in skuid shows as 10/28/2015 7:59 PM. I thought it would show as 10/28/2015 12:59 PM Does this have something to do with time zones or my formating? Any ideas?
Figured out how to call a js (inline) snippet from HTML in a template component: <script> var loadMoreFunc = skuid.snippet.getSnippet('loadMore'); </script> <center><a href="javascript:loadMoreFunc();">Load More...</a></center> My question is whether or not there is a more straight-forward way to do this? This just seems unnecessary. Any help is appreciated.
When I try and put more than 1 chart on a mobile page, only the last chart shows up.Any idea what might be causing this? The mobile page worked fine in Superbank, broke on Banzai
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.