Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Currently I can view a page normally and all functionality works. But if I add an icon on my progress bar and the page no longer fully loads. I still get the notification that leaving the page may result in unsaved changes, but the page does not redirect to the skuid page. I am working on a trial version until licenses are purchased and am not sure that makes a difference.
So I have this page components: When they display they look like this: I want to be able to display the numbers correctly such as: 61,002 ( added separator). What would be the appropriate way of adding this with skuid? Thanks.
Everytime I try to create a drilldown on my charts, chrome kills the pages, safari crashes, any ideas what may be causing this? Thanks!
Hi,After the upgrade to SKUID Brooklyn 9.3.3 version I have been getting -Uncaught TypeError: Cannot read property ‘getService’ of undefined error for skuid.service.getService() calls.Could someone please suggest what the problem could be? This was working perfectly fine before the upgrade to Brooklyn Iteration 1 or 2 .This is really urgent as my application is not working anymore.Thanks & Regards,Anshulika
I have created validation rules in opportunity object and set opportunity standard layout in skuid page ,and inside skuid page we have try to dived and save record as per opportunity amount , so i am check in any time user enter max values in another text box after that validation rule to check opp amount should not maximum. but No validation error in show ??how we done this task ??anybady help me .
I am trying to set up a context for a sliding panel with a related record and losing context.https://drive.google.com/file/d/0B409lhd9sYDcWFNVLVdXbVlwMm8/view
I want to use skuid page in opportunity layout . when we are open opportunity record that is automattically moved/ to edit mode text box ,text box is in skuid page so i want to edit mode set by default.anyone help me , how to disable autofocus in skuid.
I have 2 new page I am building and yesterday the conditional rendering of buttons has stopped working. Upgrading to I4 did not fix the problem. I can add button to to old pages just fine. Any ideas. I created a new simple test and the buttons conditions also do not work.
This should be an easy one. I have a salesforce checkbox… let’s call it Checkbox__c. I have a UI only formula field that I want to return the value of that checkbox so I can use in an if statement. However, {{Checkbox__c}} isn’t returning anything. I think it should be. The box that would be in context is checked, so I would expect it to return true. I’m able to get the values of other fields, just not this Boolean. Any thoughts? I tried wrapping it in VALUE(), but that didn’t help either. Thanks
We are using page include but for one user it’s throwing error as :There was an error attempting to load the requested page. Note: Btw same user able to see that page when i am opening the page using the URL. So it’s that user have access to that skuid page. Thanks, Raj
What do I have wrong?If ( LEN( {{Temp_10_Digits__c}} ) == 10,“”,“The phone length is " & LEN({{Temp_10_Digits__c}}) & " digits, it needs to be 10 digits.” )
Need your help 🙂I’m trying to remove the <a href linking on a div / class on a page that is a page includes. I’m having no luck with this syntax, am I way off? (function(skuid){<br> var $ = skuid.$; $(document.body).one('pageload',function(){ var myModel = skuid.model.getModel('MyModelId'); var myComponent = skuid.component.getById('MyComponentUniqueId'); $(".nx-field, nx-layout-above, a").each(function(){ if($(this).hasClass("nx-fieldtext")){ $(this).removeAttr("href"); }); })(skuid);
Barry is probably best to answer this about collapsable wrappers. If I have an include that has a collapsible wrapper. If I condition the first open to get the passed URL can this be done.https://drive.google.com/file/d/0B409lhd9sYDcWW5VM0tRS0lwaUk/view
I want to create a quick save button, that will eliminate all the render conditions and validationsIs there any way to do this, like Javascript or VF buttonAny suggestions??Thanks in Advance.
We have a 2 level nested queue to provide our users a hierarchy selector to narrow products for our CPQ system. With Brooklyn, the queue is duplicating values displayed in the 2nd queue and we have no way of getting rid of them that we have found. The model only has the rows we expect (1 of each) but the display in the queue is duplicated. Example: click an Account (queue 1) and you see the related Contacts (queue 2) Click another Account, and you see the Contacts for this account. (so far so good) Click back to the first Account and now all the contacts are duplicated. (NOT good) We have the query on Interaction actions of queue 1 to “standard - completely replace data”. We have also tried to add an action "remove all rows from model (contacts) but that doesn’t work either. Also tried running a snippet with an emptyData action in it. We’ve replaced Queue 2 with a pop up and confirmed that the model has the correct records (no duplicates) but the queue is retaining them somehow.
After 9.3.3 was pushed, I have been having a lot of problems with my Skuid pages.Pat Vachon kindly helped me resolve some issues when all of my pages were updated to their original versions.However, I am still having issues where my pages won’t load at all. I am able to edit them in the page builder, and I even grabbed the XML and pasted it into a new page…when when I try to preview…the page never loads.
I am creating an online form that people can fill out through our salesforce sites. I am making a skuid wizard to run them through the steps that they need to complete the form. On the first page it will say something like:Welcome to our online enrollment system, would you like to enroll?I am hoping to put a button there that they can push that will create a new record (An enrollment intake form) that they will fill in the fields for through the next steps in the process. I need help with this button. Do I need a snippet? Any suggestions?
Even after I3 the external resources are still missing.
I’m having trouble getting the lookup filter to pull the correct options when using the “in” condition in conjunction with another model’s records. For example, On a page I have a model for ObjectA, which is above another model for ObjectB. Somewhere on my page I have listed out the records in my model for ObjectA, so I know that there are multiple records listed. I have a popup with a field editor for ObjectB on it. On this field editor there is a lookup field to a record from ObjectA, rendered as a dropdown list. On the filter for this field I have configured that the ID of the dropdown for ObjectA should be IN the “field from another model” source Model ObjectA, source field Id. When I do this, all the records in the database show up in the dropdown filter, not just the ones that are actually listed in ObjectA model. If I change the IN to = then just the first record from the ObjectA model is accessible in the lookup field’s dropdown (this would be the expected result, although
Hi,I am trying to create a button “Save Inprogress”, this button should disable the render conditions and validations Is there any way to do this?Thanks in Advance.
We have built out a CPQ system using Skuid and are doing User testing this week. I am now seeing an issue with the Search Component and I can’t figure out how to get around it.My search component is for users to select a product to configure from our products object.The select action populates a model called ‘selectedProduct’ passing the ID of the selected product in the search component to the selectedProduct conditon and then quering that model to get the full product details of the selected product so the user can then start configuring it to add to their quote.Part of the select action is to populate a couple UI fields on the selectedProduct model to capture some additional data from the user which will get passed to the quote when they are done. (Unit of measure defaults and Minimum Quote Quantity.)Once we do the add to the quote (using a snippet) the user then goes back and searches for another product and continues to build their quote.Before Brooklyn, this worked just fine.
I had some custom CSS on my tabset components, and today upon logging in, it’s no longer being reflected in my pages. Any ideas why it’s not working all of a sudden? &#46;ui-state-default a, &#46;ui-state-default a:link &#46;ui-state-default a:visited{ <br /> background-color: #17365d; color: white; border-top-style: solid; border-top-color: #7a7a7a; border-top-width: 1px; } &#46;ui-state-hover a, &#46;ui-state-hover a:link, &#46;ui-state-hover a:visited { background-color: grey; color: #17365d; border-top-style: solid; border-top-color: #7a7a7a; border-top-width: 1px; } &#46;ui-state-active a, &#46;ui-state-active a:link, &#46;ui-state-active a:visited { background-color: white; color: #17365d; border-top-style: solid; border-top-color: #7a7a7a; border-top-width: 1px; }<br />
Hello,We are trying to leverage the Salesforce Streaming API to get updates to pages in real time. The way we want this to work is to have the page subscribe to a PushTopic on page load, then when the page receives a notification from the Streaming API, requery some of the page models to reflect the change in the data. This will all be done in JavaScript.The issue we are running into is that when the page tries to subscribe to a PushTopic, we are getting the error “XMLHttpRequest cannot load https://c.na28.visual.force.com/cometd/24.0/. Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘https://skuid.na28.visual.force.com’ is therefore not allowed access. The response had HTTP status code 405.”We looked into trying to make a CORS request between the different domains, but it is resulting in the same error.Has anyone else tried using the Streaming API in this way? Is there a workaround to
I want to build a skuid form that I can run on my website that fills out a table is it’s mysql database. It looks like I can do that in Brooklyn. How do I get the beta?What are licensing costs going to be?
I was using the following code to download the JS files. This script is in a js file(lets say file1.js) which is in a static resource and is included in skuid pages.function loadJS(file) { var jsElm = document.createElement(“script”); jsElm.type = “application/javascript”; jsElm.src = file; document.body.appendChild(jsElm); }loadJS(“/soap/ajax/38.0/connection.js”); // file2loadJS(“/soap/ajax/38.0/apex.js”); // file 3Now my expectation is that after file1 is executed, file2 and file3 will download and then on page load functions will be called. This used to work fine until 8.15.15After the upgrade, its failing. I suspect the files are getting downloaded asynchronously.
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.