Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I need to switch the button-icon to the right side of the text and really would like to have an option on the buttons property field.Regards
I need create a calendar which shows only year with two button previous and next and onclick of these buttons record of that particular year should open. There are only one record for a particular year. I am new to skuid please help.
I have the below script to deactivate the conditions, var params = arguments[0],<br>$ = skuid.$; var ContactSearchModel = skuid.model.getModel('ContactSearch'); $.each(ContactSearchModel.conditions, function(i, condition) { console.log(condition.name); // only deactivate conditions created by table searchbox if (condition.name.indexOf('searchbox') &gt; -1) { ContactSearchModel.deactivateCondition(condition); } } );<br> I have two users;1. User A: admin user2. User B: Skuid Page ViewerThis works fine for user A while the user B is the one who only get this issue.console.log(condition.name); prints null for user B,Why is this happening? What am I missing here?
I’m trying to hide the Save/Cancel button on a skuid table if my model meets a certain criteria. I use javascript to check my model and hide the buttons on page load, but it only hides the buttons for the current tab I’m viewing. Here’s a picture where the buttons I want to hide are circled: Again, it hides when the page loads directly into the tab, but the buttons are still present in the other tabs. Any advice on this is appreciated, thanks in advance!
Are pages generated by Skuid are compliant with 508 accessibility requirement. I could not find any article in this regards.
I have a table of bid line items that together make up a bid form. I have a custom field called Sort__c [(Number 18,0)], that is in-line editable which I use to order records by (ascending) in the model. Today, user’s must manually type in the sort order. Whenever a new row is added via in-line record creation, ideally, I’d like the Sort to be set to whatever sort # is for the last row +1.A couple questions:Is it possible to have newly inserted rows to appear at the bottom of the table instead of at the top? How can I get the value for Sort__c to be set to the next sequential number in the table for new records? If I want users to be able to re-order line items in the table without having to manually edit the Sort for each line item in the table, is there a way to enable drag a drop to move line items around in the table and have sort update accordingly (i.e. Can the drag & drop JS functions for queues be extended to table components in any way?) Or, is it possible to have 2 row ac
This formula leads to the UI field not populating (remaining blank) if either field value is 0. The referenced fields are Salesforce Formula fields. I have worked around this by adding an artificial 1 to each field to ensure a non zero answer, then subtracting them back out in the UI formula. VALUE(((VALUE({{SCORE__c}}) + VALUE({{SCORE_2__c}}))/20)*100)
I have added 10 different account fields on the page.Based on the user entered values in these account fields,I need to display data in a table.Please let me know how to filter data in a table based on user entered values.Also,two of the fields entered by the user are child record names,based on these child record names I need to fetch all the parent account records and display in the table.Please help!
How to create autocomplte fields in skuid UI page?
in my contact object, i have a text field like’ mailing_country’ comes in managed package. now my requirement is like auto complete, when i start with ‘U’ letter, which is start with ‘U’ following countries need to come.can any one help.thanks
Can’t find an answer to that question anywhere, so thought it would be worth a shot asking.I’ve created some sort of Calculator, using a couple aggregate fields and Mostly UI only field to be able to get results live (without having to save)Now, i’m trying to find a way (if even possible) to be able to send that info when necessary to normal SF fields on an object, so we can capture the data.Would anyone know if even possible, and If yes, maybe point me in the right direction?Thank you
After we refreshed our Dev sandbox from production, the Skuid pages are no longer working. On analysis we found that there are no users added to Skuid package now, and neither are we able to add any. The “Manage Licenses” option no longer appear. What could be wrong here? Is this anything to do with the fact that Salesforce refresh converts packages to use a “Site” license?
here is the code for “save application” script var recordTypeId; var sPageURL = window.location.search.substring(1); var sURLVariables = sPageURL.split(‘&’); for (var i = 0; i < sURLVariables.length; i++) { var sParameterName = sURLVariables[i].split(‘=’); if (sParameterName[0] == ‘RecordType’) { recordTypeId = sParameterName[1]; } } var applicationModel = skuid.model.getModel(‘Application’); var appRow = applicationModel.data[0]; var contactModel = skuid.model.getModel(‘Contact’); var contactRow = contactModel.data[0]; var actionModel = skuid.model.getModel(‘Temp’); var tempRow = actionModel.data[0]; var accountModel = skuid.model.getModel(‘Account’); var accRow = accountModel.data[0]; var productModel = skuid.model.getModel(‘Product’); var productRow = productModel.data[0]; var businessModel = skuid.model.getModel(‘BusinessInfo’); var businessRow = businessModel.data[0]; var CollateralModel = skuid.model.getModel(‘Collateral’); var ColRow = CollateralModel.data[0]; var
I have popups where conditions are not rendering. Here is the condition I have exposed both ID’s If I use “=” in the condition I get this If I use “In” in the condition I get this What needs to be changed?
Hi,I’m attempting to dynamically re-render a ‘readonly’ table in ‘edit’ mode using code. I’ve referenced the following support thread when writing my code: https://community.skuid.com/t/how-to-make-a-table-component-read-only-dynamically.Here’s the code I’m using on my page:var table = skuid.$(‘.myTableClass.nx-skootable:visible’).data(‘object’);table.mode = ‘edit’;table.list.render({doNotCache:true});The table is re-rendered, however it will not change to edit mode (or vice-versa if I set it up the other way).Thanks for the help!Kartik
When I add a formula field, type in a statement and refresh the page, my formula’s gone.
I have a SF formula field, which will check if a skuid image reference field is blank. This formula field is working, so it returns true if an image is attached and false if not. Based on this field, I want to render an image component of that image, when the value is true. If false anotcher image component would be rendered with a static image. For the image out of static resources, the condition works fine, for the other it doesn’t.
I’m a noobie trying out some ideas in SKUID which include a Tab called Group Account Performance on the Account Page. This returns a list of all accounts in the Hierarchy into a summed table so that I can aggregate their overall performance.So far I have made it work, but when generating a preview, I’m prompted to input AccountID, ParentAccountID, and again AccountID - this makes me think I’ve overcomplicated it. Note that not all accounts have Parent Accounts…Any ideas of the best way to achieve this?
I’m searching for ideas on how to conditionally render a field from Model A based on whether or not a field in Model B contains a value from a field in Model C.1) Conditional Rendering field (A) based on field in another model (B) using the “contains” will not work because Conditional Rendering does not apply merge syntax on the “value” property (C).2) Formula fields do not have a “Contains” operator so unable to add UI only field to Model B and check if field contains value from field in Model CExample (note that example is not real world, just demonstrating the use case):Model A - Contact has field “MyField”Model B - Account has field “Members” which is a comma delimited list of aliasesModel C - User has a field “Alias”Rule - Show Contact.MyField if Account.Members contains User.AliasThe only solution I’ve come up with thus far is to resort to javascript with a UI only model and creating the row programatically.I have 100+ pages and they all will have some need for this - the largest
Been looking around but could not find a reason for my issue. My page include is not showing me the records related to the specific account I’m on, but showing all records instead. I have my main Skuid page (let’s call it account) and I have another Skuid page (let’s call it activities) Activities has multiple tabs and a couple models (different models name than the account page) 1 of the model we will use for this example is based on Tasks I want to use page include to add the Activities page to one of the tabs on Account page On the Activity page the model condition is AccountId=(param) Id Created the Page include on account page, as follow I tried ?id={{$Param.Id}}, without question mark and uncheck lazy load (saw that on another post) but still did not work I say on another post to check the developer console, network tab. And it seems to me , that the id is not being passed I would appreciate any help i can get. Thx
When I add a panel to my page, I can not edit the panel properties. It’s in a sandbox org. Does anybody know this problem?
Use case:Search component queries a parent object Return object action - creates a new row on a junction object (child) Select action should default to the return action (it’s the only action on the component) Problem:When I select the row, the action performs as expected - it pushes the parent object Id to the child. When I click the return object action icon, it pushes an id from a different object into that child row.Possible explanation:The return object action creates a new row, and sets the master_detail_field = {{Id}}When I select the row, it sets an {{Id}} in context that can get pushed. However, when I simply press the return object action icon, the {{Id}} in context doesn’t change - it remains the last context id value.Possible solution?A note on one workaround:I could simply select the returned object, but it significantly decreases the usability of my solution. When you select a return object record, it closes the search options. When you click the icon, you can select mult
Hi there!I’m using the Wizard component (which is AMAZING) in my app. I am using Enable conditions on a button in a certain spot. Basically the idea is, the user cannot move on to the next step unless the conditions are met. Namely, my conditions are that 1. a field on one model is non-empty, and …2. a different model has data rows.Everything works great under normal circumstances. The issue I have is that, I also have a “Start over” button that uses the Action framework to empty all data from both models in question and then navigate back to step 1.If I use that, when I come back to the step the second time around, this time the enable condition does not fire properly. That is, I can verify on the console that the conditions ought to be satisfied, but my button does not enable.Is there something I’m missing? Perhaps a way to force a re-evaluation of the enable condition programmatically?Any help is appreciated!Thanks,Hamza T.
I am using some client-side validation in my app, and running into a certain issue.I’m using a function like the following to handle messages - function errorMessage( message ) {<br>&nbsp; &nbsp; var title_component = skuid.$(‘#my-page-title').data('object');<br>&nbsp; &nbsp; title_component.editor.handleMessages( [{ message: message, severity: 'ERROR'}] );<br>} The messages display just fine. The issue is that, if the user hides the message by clicking on it, and then makes the same mistake again (or a different mistake that triggers the same message), nothing is shown.Is this by design, or a bug in my code, or a bug in Skuid? Is there some way to “reset” the component that is showing the message so it will show the messages again?Thanks!
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.