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
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.
Currently on distance conditions, you have three options for the comparison location source. Fields from another model, running user’s location, and page parameters. I want to be able to filter a list of contacts with the source location being manually selected. I am currently using a dummy model and have tried a combination of Ui Only fields and actual reference fields.The problem is when using “Fields from another model”, to get the condition to grab the latest change, you have to save that model and update both it and the model being filtered. This is problematic using a dummy model as I do not want to save the changes to it, and a UI only field would be reset doing this. I am setting the value for the distance value from my snippet. Is there anyway I’m missing to manually set the Lat/Long for that condition? I feel that would solve my problem.
We installed the Brooklyn update in Production. When I apply a table filter, the shading on the rows is not present immediately. If you hover over the table, or refresh the page, the shading appears (sometimes all of it, sometimes as you hover over it). Is this a known Brooklyn issue? Would a Update Out of Date Themes fix this (I’m hesitant to do it if it won’t).
Hi, I creating a report so I can calculate the Total Price of minute usage. I was able to create a UI-Only field and use this formula: ({{sumTalkdeskTalkTimesecc}} / 60) *.03 Which basically converts seconds to minutes and then * .03 because outbound calls are $.03 per minute. The problem I’m having is inbound calsl are $.02 per minute I wanted to know how I can have the amount multiplied changed from $.02 to $.03 depending on the filter I apply to the table? -Adam N i
We are using the standard approve/reject button on our opportunity detail page. Unfortunately, the button doesn’t seem to render when a delegated approver visits the page. Does anyone have a neat way around this issue?
We’re trying to create a fairly simple control to create a new object, with a file picker for file upload, following this article: http://help.skuid.com/m/components/l/102564-using-the-file-component-to-add-and-display-images-in-custom-fields When I select files to use their, it looks like it’s working but then displays “Failure creating file and attachment” - the files are approx 175KB. Interestingly, the three apex api calls that are made from skuid to SF show no errors.
I use a lot of tabs in my browser window, and it seems that using a Skuid page + multiple SF tabs greatly decreases the time it take for me to get logged out of SF. Anybody else ever run into that?
I’ve noticed some changes to how Record Type information is represented on a model when a page loads. This’ll be easier to explain with an example, so bear with me.I have a page that presents the Record Type field of a model, using the picklist renderer so that the user can select the correct record type. Depending on the record type selected, an additional field may be presented (conditional rendering), and there’s also a button that picks up the name of the record type and puts it into a URL that’s behind a button - essentially we redirect to another page and pass in the selected record type’s name. The default record type is selected automatically.In the previous version of Skuid we had installed, upon page load, if I was to go into the dev console and log the result of skuid.$M(“Model”).data[0].RecordType.Name I would get the name of the Record Type. RecordTypeId would have the ID of the record type, and there would also be a RecordType property on the row, which would hold the sel
I am using SKUID version 9.3.1 and following this tutorial: https://docs.skuid.com/latest/en/data-source-types/salesforce/deploy/using-skuid-lightning.html When I try to insert my SKUID page component (references a SKUID page using the Lightning Design theme) I get this error: So I see the error has something to do with themeBuilder, maybe its a problem with the theme so I replace with the default theme and that error gets replaced with: Any idea what I need to change about my approach to get the custom skuid component as detailed in the link above to work? Or is this a broader problem?
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.