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
I built a page in the regular (not mobile) builder. I tried to keep it mobile friiendly in layout.It loads on iPhone 7 plus fine, but editing text fields cause mobile safari to zoom in. That doesn’t happen in pages built in mobile builder, so there must be a way to stop it. Anyone know what that way is. It is harshing my mellow.
I want to slow down the default animation for a chart. I have a before render snippet which seems like it should work, but doesn’t. The labels part of the snippet works, but I’ve tried two different methods to affect the animation (which are documented in the Highcharts API docs) and they don’t work at all.I’ve tried it on a column and line chart with no luck, failing on initial page load and on selection of a different chart type from the picklist. The chart simply animates with the usual 250ms animation.Has anyone else done this successfully?Here’s my snippet: var chartObj = arguments[0], $ = skuid.$; $.extend(true, chartObj.xAxis[0],{ labels: { step: 2, rotation: 300 }, plotOptions: { series: { animation: { duration: 3000 } } }, chart: { animation: { duration: 3000 } } });<br>
Skuid Platform When I startup a page for the first time after it’s been dormant for a while, it takes an extremely long time (~1 minute) before it ends in an Odata error. When I refresh the page, it then immediately shows my page. When I set the page to caching, I get this prompt: The checkbox “Process Model Client-Side” doesn’t seem to exist under my advanced tab. If I select OK here, I’m not sure what’s going to happen. Not sure where the disconnect is.
Remove the three default button on new event popup on a calendar component
When I try to preview theme using an existing page I get an error “This page doesn’t have any layout…”. Doesn’t matter what page I try. Thanks!
I want to build a button from a record detail page (OldParent) that takes the following actions:1. Allow the user to search for another record of the same type in a popup window.2. Allow the user to select the record (NewParent) and click Close Duplicate.3. Update the OldParent reference field on OldParent child records from OldParent.Id to NewParent.Id4. Update OldParent Status to “Duplicate”I can do everything but step 3. How to I get the Id value from NewParent? I’m new to the Search component, so if there’s a way to use the search results, I’m missing it.Thanks for any help you can provide.
Trying to save a VisualForce page that loads a skuid page and getting this Error: Deployment Failed FIELD_INTEGRITY_EXCEPTION - Dependent class is invalid and needs recompilation: skuid&#46;Utils: line 87, column 40: Dependent class is invalid and needs recompilation: skuid&#46;skuidinstallscript: line 346, column 19: sObject type 'Document' is not supported&#46;: Markup This is the page in question: <apex:page standardController="Contact" extensions="skuid&#46;Redirects"> <skuid:page page="PersonDetail" /> </apex:page> Anybody have any info on this?
I’ve Geochart inside the Chart Set. I’m trying to figure out what is this map type called “dz-all” (see below snapshot) in the Geochart Properties. Could anybody provide me with the information or the resource somewhere I could look into. Thanks!
Using Java Snippet for Custom Button to open Conga Merge 8. Everything is working good except for passing the Id over. If I hardcode an Id it works, but using {{Id}} throws a conga error “id parameter not valid etc…” Tried using the Timeline__c.Id (custom object) but still the same result. I am using a snipped so I can specify that the Conga window opens in smaller size window. Any help or suggestions would be greatly appreciated. My code is below:var params = arguments[0], $ = skuid.$;var partnerServer = sforce.connection.partnerServerUrls[8];var CongaURL = “https://composer.congamerge.com”+“?sessionId=”+sforce.connection.sessionId+“&serverUrl=”+partnerServer+“&id={{Id}}”+“&ofn={{Name}}”;window.open( CongaURL, “CongaM”, “height=600, width=600, menubar=0” );
I am trying to set the default value of the Record Type to None so that the user is forced to choose either “Officer/Director” or “Other Contact”. There are only 2 record types used for this custom object. I have tried adding a third record type of “none” and having it to default to that, but it is not working either. Also, there is a problem that the dropdown for Record Type ID is showing “Officer/Director” twice in the list (see image). Thanks in advance for any assistance.
I set default values on two date fields on a model containing child records using the override field metadata option to pull a date from the model containing the parent records, as pictured: I have a table for the parent model, with a drawer component which contains a table for the child records. When I add a new child row (either inline or with a global action button on the child table) the default dates correctly show up from the context parent row, but strangely, the default dates are blank for every other row added: Am I using this default value feature correctly? I know I could also use model conditions or default values in the create new row action, but I don’t think either of these quite get me what I need. In the case of a model condition, I would not want to filter child rows that are outside the parent records start/end dates. In the create-row-action default values, I am not sure how to set these to the parent context row’s values. I am using Skuid version 9.5.6. Thanks
To reproduce try any skuid__Image__c lookups. The File Upload field renderer fails to upload any file.
We are suddenly getting this error on this code. The code was working fine and now is it throwing this error. skuid__JQueryJS:2 Uncaught RangeError: Maximum call stack size exceeded at Object (native) var params = arguments[0], $ = skuid.$; alert(‘Are you sure that you want to Enroll in Private Lessons?’);console.log(‘start’); // get the last day to create bookings to from the MMA_Enrollment object var enrollment_end_date = skuid.model.getModel(‘MMA_Enrollment’).data[0].Enrollment_End_Date__c; console.log(‘end date for enrollment’ + enrollment_end_date); if (!enrollment_end_date){ // if that field is blank, alert the user and exit the code window.alert(“There is no end date for this enrollment. Please enter an enrollment end date.”); return; } // get a javascript version of the last date var last_date = skuid.time.parseSFDate(enrollment_end_date); // open the bookings model so we can add records to it var model = skuid.model.getModel(‘MMA_Private_Lesson_Enrollment_Booking’); // check
I am trying to follow this link:https://docs.skuid.com/latest/en/skuid/components/visualizations/geochart/index.html to make geocharts work but the end result is taking only standard data and not the data from my custom records.
Is there a way to turn a subtab in to a regular tab even though it’s technically a subtab? I have a few tab sets within tab sets and i’d like to keep the regular tab set CSS.
I upgraded to version ten to fix a problem with picklist fields and Salesforce Summer. I forgot to check one of my pages before I upgraded production and, of course, that is the page with issues. I have a complex page with a lot of conditionally rendered components based on the value of a UI only field in a salesforce model. I have buttons/nav components that update the value of the UI only field which triggers the show or hide of the component. Unfortunately now, all components are rendering upon page load and they don’t respond to changes in the UI only field. As there are so many components and as some components are complex page includes, the page load takes forever and is just a jumbled mess of components stretching down the page. I tried the new component rendering feature in version 10. It doesn’t work. I love the idea and it is easy to implement, but there is no response to the show, hide, or toggle action being triggered by a button press. Also with this new functionality, I
Hi Team, Issue : While trying to refresh the data of external Object based on the User selection , We are facing JS error. Note : We are using salesforce Odata service and it running fine if we are displaying records on page load Version Number : 9.3.6 Version Name : Brooklyn Iteration 6 Please let me know if you guys need any info . Thanks in Advance!!!
As per subject. Also, there’s a spelling mistake here.
Error: Input too long .[1,61].I have a skuid page using that as header with search component.When I search anything it is throwing error in the page which we are using in body.
Explained:Suppose I’ve a field name in a string variable and i need to read that field’s value from JavaScript. How do I do that?
I found that three of my pages were not working this morning. I have made no changes to the pages or the objects. I believe it must have been Salesforce upgrade to Summer. It seems to be an issue with the field editors on that page. I get this console error. skuid__SkuidJS:5 Uncaught TypeError: Cannot read property ‘value’ of undefined at f (skuid__SkuidJS:5) at Object. (skuid__SkuidJS:5) at Function.each (skuid__JQueryJS:2) at Object. (skuid__SkuidJS:5) at Function.each (skuid__JQueryJS:2) at Object.getPicklistEntriesValidForRecordTypes (skuid__SkuidJS:5) at getValidPicklistEntries (skuid__SkuidJS:15) at Object.read (skuid__SkuidJS:16) at Object.readonly (skuid__SkuidJS:16) at g.render (skuid__SkuidJS:15)
I have a lookup field on opportunity to contract object. Contract object does not use normal Name field for lookup. I am trying to get ContractNumber which is Auto Number from contract to opportunity. IT works fine on salesforce but on skuid it does not show any value. Strange when go click this field there is an ID there but it does not show unless I click on this field. Since it is a lookup field I want the contractnumber in link format so that if I click on it, it should go to that contract. Any help appreciated.
Say I have 100 PDF files in content documents. I would like to export them all. Anyone have any skuidtastic solutions?
barely worth mentioning, but it does trip me up more frequently than I would like to admit. The height and width settings for wrappers has Max first for width and Min first for height. Screenshot attached.
We’ve updated a contact name fields and confirmed updated with dataloader (LASTNAME, FIRSTNAME, SALUTATION, NAME), but task models are still pulling the old name via the WhoID field. Where do I update this data??
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.