Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hello, I have a use case from a client where they would like to have a way to put their cursor in a skuid field that already has a value in it and when they click to put their cursor in it or open it up for editing that the field value would go blank. In their use case they have a lot of number fields where they are changing multiple values and having one be 0 for instance, they have to delete the zero to be able to change it to 1 instead of 10. We’ve explained they can tab through each field which would highlight the values, but they are looking to have a bit of a different experience if possible. If anybody has any ideas on how to solve this via a snippet that would be super helpful! Thanks!
I’d like to create a chart that shows a cumulative growth line, and I’m really struggling to do this. There were early posts with potential solutions to this problem, but nothing worked. Has anyone been able to achieve this? If so, how? Open to all ideas.The dream is to have each column (or point) highlight the value of the current Day/Week/Month, as well all the values that came before it. (e.g. Jan shows Jan, Feb shows Jan + Feb, March shows Jan + Feb + March, etc…)
When saving a record that contains a model override of a DATETIME field to DATE, an “List index out of bounds” error is encountered. Steps to reproduce: Create page using XML below Preview page Set the Reminder date field Click save Expected Behavior Record saves successfully Actual Behavior “List index out of bounds: 1” error is encountered Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Task"> <models> <model id="Task" limit="1" query="false" createrowifnonefound="true" sobject="Task" adapter="" type=""> <fields> <field id="Subject"/> <field id="CreatedDate"/> <field id="ReminderDateTime" overridemetadata="true" ogdisplaytype="DATETIME" displaytype="DATE"/> </fields> <conditions/> <actions/> </model> </models> <components> &
I have a page include that is called from 3 pages. When the included page is executed on of 3 models wins. Each models has UI field to determine if this model was used. or or I am trying to create a template that is conditioned on the 3 fields in the parent model Something like this where Engage_CR is parent model {{#{{$Model.Engage_CR.From_Object}}}}{{CR_Member_DNA__r.Member_DNA__r.View_Member_Stacked__c}} {{/{{$Model.Engage_CR.From_Object}}}}
HiIn SFDC Debug, the calculations are looking good.price = 79.00discount = 12.20but when I add these fields on Table in Skuid, this shows like below:price = 79 discount = 12.2Any idea why this is happening ?
I’m creating a landing page for account managers and need to display the parent account if the record the user is viewing is a child but I want to also display the children if the record being viewed is the parent. How would I go about accomplishing that in a table view so the user can easily see all accounts within the hierarchy when viewing the parent but easily get to the Parent account when needed.
We have two models. We are trying to take the id from the first model and pass it into the second model to find the matching record. When we find the matching record, we are trying to find it’s id and pass it into a field in the field of the current row of the first model. The code seems to work, but inside the callback for update, it always uses the same row id. We tried passing the row id into the callback function, but that doesn’t work either. How do we ensure that the callback function gets access to the id of the current record in the outer for loop? var params = arguments[0], $ = skuid.$; var skuid_model = skuid.model.getModel(‘MMA_Transfirst_Batch_Transaction’); var skuid_model_number_of_records = skuid_model.data.length; console.log (’ skuid_model_number_of_records ’ + skuid_model_number_of_records); for (i=0;i<skuid_model_number_of_records;i++){ console.log ( " ==>i " + i ); var TransBatchRow = skuid_model.data[i]; var TransBatchRowId = TransBatchRow.Id; console.log (
I have a global action button ‘credit pull’ in a table. i am calling my apex class from, global action button–> action type=run multiple actions–>Run Custom apex action–> my class name.when i click on credit pull global action, i am getting an error like Uncaught TypeError: Cannot read property ‘outputValues’ of undefinedcan any one help me, come out from this issue.
Greetings, I’m having a problem with one of my pages where if I navigate away from the page, or reload the page, then I get an alert message asking for confirmation of the navigation or reload. we have another page that is similar to this where we don’t have that problem, nor do we have this problem in our staging or production environments. I compared the pages side by side and there’s while there are some differences (JavaScript), there’s nothing configuration wise that I can see that would cause problems.That said, we did move some JavaScript into a static resource, could this be a cause?Any insight would be helpful. Thanks!
Im am very new to both Skuid and Salesforce and have probably not understood how to set it up correctly so any advice welcome.Bit of background firstI have a custom object with a few hundred entries which are site detail recordsmy users are only authorised to create documents based on certain sites which are assigned to them, this is stored on a custom field in the user object. actual access to the documents is via the role hierarchy so that is covered, what I needed to do is only allow the users to add documents for sites they are authorised for and did not want to use validation to stop them afterwards as the picklist would still show hundreds of entries which are not relevant to them. so getting to my problem I looked at using lookup filter which I was able to do on the document object to create within salesforce by creating a lookup reference field as setting the formula to Current User: WHS Current Site Name CONTAINS Site Name: Site Name, which works as the user contains a list
I’m creating a guided process of saving of a record that uses tabs for each step. Is it possible to redirect to the next tab upon the saving of one? I have created a custom save button with a redirect of #TABID. When I click the button it saves the record and my browser URL does add the #TABID. However, it doesn’t actually change the tab.If I hit enter in my browser URL window, it does then go to the correct tab.Any ideas how to make this work from the button?
I’ve created a button on the Opportunity object called “Convert Opportunity” that opens a Skuid Wizard to create a custom object called “Sales_Orders__c”. Using here post, I was able to pre-populate some of the fields from the Opportunity using URL Parameters. However, do I have to use URL Parameters to pass all the data from the Opportunity to the Sales Order? Or can I just send over the Opportunity ID and then have conditions that set the rest of the fields? I’ve successfully gotten the Opportunity, and Customer(Account Lookup) to pre-populate, but would like to get all of my Billing Information to pre-populate from the Account that is on the Opportunity. Do I have to pass all of this data through the URL? Or, is there a way to set-up a condition to pull all of that information another way? What I’ve done so far On the Sales Order Wizard page, I’ve created another model called “Account” and set a condition to use the URL parameter “AcctID”. I then set a condition on the page model “
I’m new to Skuid and can’t seem to figure out what I’m doing wrong here. I’d like to conditionally render the text color of a field based on the field’s value. This is what I have so far: var field = arguments[0], value = arguments[1]; skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; if (value < 0) { field.element.css({ ‘color’: ‘rgb(0,128,0)’, }); } else if (value > 0) { field.element.css({ ‘color’: ‘rgb(255,0,0)’ }); } If I change ‘color’ to ‘background-color’ the background changes just fine, but I’m trying to change the text color. Any help would be greatly appreciated.
I am having trouble mapping out data using the UK Counties geomap.Currently I have a post code value that is split, then looked up to a few variations of the recommend highcharts pointers. I have stumbled upon the issue though that skuid is only pointing the field at “postal-code” with has a null return for about 15-20% of the counties. There is also a problem with overlapping within some of the "postal-code"s. Is there any way to change the point to either “hc-key” or “hc-a2” as they are unique by county? BestRaw js for reference http://code.highcharts.com/mapdata/countries/gb/gb-all.js
Hi All, We have a skuid detail page, in that page we have parent records displayed, for every parent record we are displaying child records in a Drawer. in Child records we have a field X(Currency), this currency field value should be equal to the field value of parent field Y(Currency). We are using inline record creation for the child records. so when user creates more then one child record he should match the value of X to Y . For this case we have written trigger, in case of insert and update trigger is working perfectly and displaying error if the values of (Sum of X) for child records is not matching with Y. But in case we try to update on e record and insert another record to match the value, this use case is not working. Could some one please assist on the same. Also when we open the drawer its just getting collapsed when user is trying to enter the value. Is there a way where we can make drawer in some way where opening and closing the drawer is in user control ?
I have a master page that I’ve used in several places. Just tonight I’ve noticed it doesn’t have “available as master page” checked and it’s not checkable. The existing pages still have it as a master page, but I can’t add any new child pages to it, and when I clone an existing child page it doesn’t clone the master page connection. Any ideas? Still running Banzai 7.27.1 - should I upgrade to try and fix this?
I am trying to pull in all tasks that are related to an account, however, a good number of tasks are associated to a contact related to the account and don’t have an account listed with the task. I saw some other posts about this but I was wondering if there is anyway to drill into the WhoId field on the task and pull the account that the contact is associated with? Or if you have any other work-arounds, I would love to know more! I tried using the child relationships object, but our reps would like the ability to create a new record inline and have these tasks in a table view
Is it possible to pull a custom URL field from the Running User’s ‘User Detail’ to dynamically load the background for the Skuid Page they are looking at?I would like to be able to create a field on the User Record to store the URL to an image of their choosing. Then when they load a specific Skuid Page that skuid page would have the variable to pull the URL from their user record rather than the url in the background section of the page.I tested updating the xml and loading the the field from the user record, but it seems like it’s not one of the available fields to use from the running user. Just wanted to check to see if anyone had any work arounds for this!
I am trying to compare the value of a field in two different models and based on the results check a box. I have been trying to create a ui-only formula field with no success.Can someone tell me what I am doing wrong or if the ui-only field can not do what I want it to do?Use CaseTwo object “A” and “B”The ui-only field is on object AI want to compare the Item field in object a with the item field in object bIf there is a match the box is checkedFormula:CONTAINS(MODEL_LOOKUP(“B”,“SCMC__Item_Master__r.Id”,“SCMC__Item_Master__r.Id”))
Hi I am not very familiar with snippet and spent sometime trying to replicate snippet examples in the skuid community without good success. I have created a skuid oppty page with 3 x oppty tables within Tab Set component to show 3 x different “pre-formated” views of the funnel with limited filters in each page. I would like to be able to use one master Filter called “Territory” sales users could select that would automatically refresh and filter the 3 x oppty Tables at the same time with the same territory information. “Territory” is a picklist custom field on the oppty page today in SF. Do we really need a snippet here knowing the 3 x tables are on the same oppty object ? As we have multiple territories between North America, EMEA, APAC I would prefer a toggle filter rather than a picklist filter if this is possible. If anyone could help … Thanks a lot.
I’m trying to re-create the “Action” column for Case History in Skuid & am running into a bit of trouble. Below is a screenshot of the action field which i’m creating in a UI-Only template field within Skuid. My sample formula is; "Changed " + {{Field}} + " From " + "Old Value " + "To " + “New Value” This works fine when just using strings; however, when I replace the strings with fields {{OldValue}} and {{NewValue}} I’m getting this error message; 1. Invalid syntax for field formula: "Changed " + {{Field}} + " From " + {{OldValue}} + "To " + {{NewValue}}. SyntaxError: Unexpected identifier I had thought the issue might have something to do with OldValue and NewValue being “AnyType” fields but i’m unsure why i’m running into issues when trying to include these fields. Any ideas / suggestions would be much appreciated.
Is there a way to set up the color palette for the line/column style charts in the theme builder? The palette in the theme builder seems to only impact the pie-type charts.
I am applying a “Multi-Select Option” table filter, but nothing appears when I select one. Also, when I clear the table filter, only the first record appears. Prior to applying any filter, all 186 records were displaying on page load. I added the conditions on the model, as described in the tutorials (referenced the two pages linked below) but can’t seem to find how I have done anything differently than the tutorials. Does this issue sound familiar to anyone? Does anyone know where I may have gone wrong?http://help.skuidify.com/m/models-conditions-filters/l/102562-create-a-filterable-tablehttp://help.skuidify.com/m/models-conditions-filters/l/168443?data-resolve-url=true&data-manual-…Thanks!
Hello,I’m wondering if there is a way to accomplish the following:I would like that everytime a Picklist value is changed (to any value, except blank), for a pop up to appear, but without having to SaveSo example picklist contains 2 values: apple & bananaIf It’s on apple , and I change it to banana, right after i selected banana, a popup should appear with whatever fields I need…In case it is possible any help/snippet would be appreciated Thx
I am creating a map using javascript on pageload and need to use this map values in a table, which has custom field renderer on few columns So created map on page load and i am calling skuid.$C(‘HomepageMas’).render(); after the map is created, so that the updated values will be displayed by the cutom field renderer on columns. The values in the columns are displayed properly from my Map, but the pagination is getting disturbed. The pagination moves from bottom of the page to the top of the page on my table header, after skuid.$C(‘HomepageMas’).render() is called and columns are loaded with correct values. I alternatively tried using skuid.$M(‘model’).sync() on page load after the map is created,this doesn’t affect the pagination, but it causing another problem as described below. I have template to select a team in my page, when i change the team, the values in my map get changed so i again call skuid.$M(‘model’).sync() The below result is observed when i use sync() When i select a
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.