Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi All, I followed ‘Simple Map Component’ article and added ‘Maps’ module and two JavaScript files as static resources in Salesforce. When I create a new page and select the module as ‘Maps’, I don’t find the map component in the component list. Could you please let me know what am I missing here? Thanks!
I have a table in a Skuid page that runs off a model. This model is built on a Salesforce object that some users do not have permission to access. Using conditional rendering, I hide this table from the users who do not have permission. When testing as one of these users, the table is correctly hidden, however, there is an error that appears at the top of the screen. The error reads that the user does not have permission to view the records of the object the hidden table is built upon.How do I hide this error message when the element that uses this model is hidden?Thank you
As per subject.
I have lookup field which I have to make as multi select parent and store in text area ,after store in text area then allow to save.Is it possible?If it is possible then how I can implement.
1.If i enter some text on this field so it shows characters are not allowed? 2.I want to include + and - in the phone format?
Recently upgraded to 10.0.4 from 9.5.1. I noticed that a reference field that produced a drop down in the previous version no longer will show as you start to type. I am fairly certain I have the reference field set up in the exact same manner, I have also tried removing the field from the page and readding it. The image belows outlines that the “search” circle just spins and spins and does not eventually load. My question is: Did this functionality change in the newest release? Or is the only way to select is through the magnify glass and select the item from that table. The first image shows current functionality, the latter is the old functionality. Thanks in advance for any help! Richard
Very curious glitch i’m running into here, issue being that my Skuid Page’s are working as components in some pages but not others. Let me just recap real quick, I have everything necessary enabled and have successfully created Skuid lightning components in my Accounts & Opportunity Record Pages. These two pages load consecutively, reliably, and accurately uses the Id=‘page parameter’ condition. These were created later last week. I’ve cleared caches from Chrome & used Incognito browser as well and have generated page files for all Skuid pages (twice to be sure). This week, i’m creating a record detail page for Contacts. I created a very basic contact detail page with the same exact conditional setup as done previously, and the component doesn’t load. All that appears is a small blank white bar. I take it back to basics, I remove the ID condition from the model so all (in sandbox so 3) contact fields should be loading. Still, blank white box. I refresh this page incessantly and
I’m trying to save changes to a model when the user closes the page. I don’t want to give the user a message, I just want to save the models. Here is the code that I’m using, but it seems like it’s working only some of the time. Can someone tell me what I’m doing wrong. Thanks!(function(skuid){ var $ = skuid.$; $(document.body).one(‘pageload’,function(){ $(window).on(‘beforeunload’, function () { saveAllModels(); }); });})(skuid); function saveAllModels(){ var SalesOrderModel = skuid.model.getModel(‘SalesOrder’); var savePromise = SalesOrderModel.save(); }
If I create a chart with multiple axes like so: The chart does not respect the max value for the axis: This seems to be a problem only when multiple axes are specified. This may be related to an issue posed three years ago.
I want to hide wrapper from on page load.Please find the code as below:(function(skuid){ var $ = skuid.$; $(document.body).one(‘pageload’,function(){ $(document).ready(function(){ alert(‘page loaded’); // alert to confirm the page is loaded $(‘wrapperId’).hide(); //enter the class or id of the particular html element which you wish to hide. }); });})(skuid);I tried lot twist the code but I didn’t get result.
I have an object which contains a lookup field to a skuid page. I’d like to create a deck on this model and include the skuidpage in each of the cards on the deck. However, it seems that skuid won’t allow the deck component to contain a page-include component.Any thoughts on a way around this? Should I just hack the xml?Use Case:I have a salesforce object which contains Goals. Each Goal record has a lookup to a skuid page which amounts to a chart to track progress on that goal. I want to build a page which will automatically grab all of the active goals and show their charts in a responsive dashboard-like ui. The Deck seems like a great way to do this… if I could include a page. I would probably also need to run some javascript when each card is rendered. Is there a way to do that? Anyone have an idea here?
It seems like url/param conditions can’t be made filterable default on? I’m loading a page include with these conditions: And here are the query string params being sent to my page include: But here are the conditions on the model when it’s loaded: Why are the conditions inactive (without value) when they’re being passed the url parameters that they are expecting? Thanks!
Is there an easy way to change the save cancel order for the default save/cancel buttons on tables/field editors/page titles etc?On all our pages we would like to have Cancel first and Save next. I know this could be achieved through a button set, but there are many pages on which we might need to do this. I was wondering if I could do this at a theme level and then apply that theme to all my pages.Thoughts?
We are trying to get the base64 of an image we have uploaded by trying to get it from skuid.$M(“model”).data[0].Body.realBlobValue.asByteArray. With some images it works but with others the value is not there with the only field after skuid.$M(“model”).data[0].Body.realBlobValue being .file and it returns a value that looks like a filepath ": “/tmp/bvf/blob2885374293920319543.bvf”. We would just like a little background on where to go or what to do so that we can consistently grab the base64 of the image that is uploaded
Hi All,I have a wizard with 4 steps. When I click ‘Next’ button on step1, it is taking me to the bottom of second page and I need to scroll up to to see the fields at the top of the page. It is happening for ‘Previous’ step too and on all pages. Expectation: upon clicking ‘Next’ button, it should take me to the top of the next page. Could you please help me with this issue? Thanks!
This might sound dumb! but can anyone help me with this I am trying to get the related trade values, which has the same Trade ID Value, under the Related Trades. As shown in the picture, my Related trades should only display the same trade Id value 21794282 but not 99999999. What condition I should use in order to achieve this? Thanks in Advance!!
I haven’t looked at my mobile pages in long time so I’m not sure when the issue started. When I open a new page or edit any of my existing pages nothing on the page is responsive. Every button or option in the page builder does nothing. Clicking on the preview button does nothing either. I tried both FF and Chrome and they both have the same result. I’m on Skuid Version 10.0.2. I have verified that my MobleCoreComponents are active and set to mobile only. I don’t have tfgComponentPack installed in my org. This issue seems really strange I hope it’s not something simple…
in my skuid file object …the url for an image . please give example how to show the file using full salesforce url
Creating duplicated records can be prevented from Duplication rule from salesforce. But is there any way to pull list of duplicated records before creating a records in Skuid. Skuid only shows the message but doesn’t give you the list of duplicated records.Thanks you!
Primary table is Accounts on a list view page. Added Drawer to show related Contacts for each Account record in table. Followed the directions on this page: https://docs.skuid.com/latest/en/skuid/components/drawers/Keep getting SOQL error when opening Drawer. I have the Accounts as Primary object Contacts model has condition where Account.Id = blank, filterable off The Before Load Actions on the Drawer Activate Condition and Set Value, query Contacts Model, value = {{Id}}. Tried several different tweaks and still coming up with this error below. It has to be something simple I am missing:SOQL query: SELECT Name,Title,Account.Name,AccountId,Id FROM Contact WHERE (AccountId = 001G000001yaZc7IAE) LIMIT 21 Error:unexpected token: ‘G000001yaZc7IAE’Tried using Account.Id and it did not make a differenceThanks
In 8.15.15 we could use {{ReferenceField__c}} in page include url paramenters, and skuid would interpret that and pass the id field to the page include. In 9.5.11 {{ReferenceField__c}} passes the Name, and {{{ReferenceField__c}}} passes the id.Is that intended behavior?When did this change?
Does anyone have some sample CSS to share where you have successfully rendered a table’s contents dynamically based on the browser window size? This would be identical to standard Salesforce list views. If you display 200 records and re-shape the window, the amount of table rows visible becomes more or less but the bottom of table always remains 100% in view. Full browser window: Resized window: Number of rows visible is less, but the table bottom is still in view.
HI,We are using Lightning Community (Customer+Napili Template).In community builder we are able to drag and Drop skuid page lightning component but after specify the skuid page name in Skuid page component attribute we are not able to see the skuid page.So is it Skuid Page lightning component will also work with Lightning community builder? Note: we have have tested the same Skuid page lightning component in Lightning app builder and here are able to embed skuid page in app builder.Thanks,raj
Scene: Skuid page, with content. Preview looks great! Everything loads. Visualforce page, rendering Skuid page as redirect. Works great! Everything loads. Lightning component, rendering the Skuid page through skuid:page. Page loads. A div is rendered with the class skuidPage. But, no Skuid content is rendered. Blank page. I’ve served the lightning component within my app as a standalone Lightning Tab, within a Lightning Page App, and within a standalone .app Lighting App. Same result. Upon inspection, the /resource/SkuidCustomSnippets is not found. 404 on the get request. This is the only indication of an issue through dev tools… I have deployed a custom domain. Other custom components are working fine. What am I missing? How should I proceed? This is a bit of a showstopper.
Currently looking to render a field enabled/disabled based on model value but can’t seem to get it working as required.For example, trying to use a “Model field value” with the “Single specified value” of {{{$Model.CurrentUser.data.0.AccountId}}} to determine whether to render a field enabled.Can’t get it to work as I like so having to use a “Snippet returns true” with the following:-return skuid.$M(‘LadderTemplate’).data[0].DefinedBy__c === skuid.$M(‘CurrentUser’).data[0].AccountId;Whilst the above workaround gets things done as required, would like to undertsand why the simpler/cleaner approach doesn’t work.
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.