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 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
I’m trying to render a non-required Field Editor picklist field as radio buttons without the “none” option. I know this essentially makes it required, but in this case we want to allow people to not choose a value without cluttering the UI with “none.” We are okay with them not being able to unselect once they select. I’ve been working on a custom field renderer: var field = arguments[0],value = arguments[1];<br>if (field.mode == 'edit') {<br>&nbsp; &nbsp; var picklistEntries = new Object();<br>&nbsp; &nbsp; picklistEntries.value = "A";<br>&nbsp; &nbsp; picklistEntries.label = "A";<br>}<br>field.element.append(skuid.ui.renderers.PICKLIST.edit({<br> entries : picklistEntries,<br> renderas : "RADIO_BUTTONS",<br> onChange : function(value) {<br> field.model.updateRow(field.row,field.id,value,{ initiatorId : field._GUID});<br> },<br> mode : field.mode,<br> noneLabel : "ignore"<br> })
I am trying to sort on a stock field which are number fields. The first time I click the sort arrow it sorts with highest stock at the bottom of the list. I always have to click sort arrows twice to get the information to show highest stock levels on the top. I have tried pushing both arrows and I get the same results lowest to highest when what I want is highest to lowest.Is there a setting that I am missing somewhere?Thank you!
Hi All, Is there any way we can show fields in different tab based on certain condition on first tab. our client wants to display 10 fields in different tab based on a picklist value on first tab when the record is not saved, and once we fill detail in the secod tab we would like to save the record. Please let me know if there is any way to render the tab based on the picklist value.
As the title says, I’ve got several page includes on a page and none of them have the lazy load checkbox checked. However, they all show delayed loading behaviour where, after clicking the tab for the page include, the page include does not load for several seconds.Does anyone have any other ideas for where I should check to solve this? I’m at a loss.
We found something in skuid (don’t know feature or bug) a while ago. We have a model called OpenTasks based on custom object Task__c in a page include. The model has condition named practiceMember (filterable default off) with value set to result of subquery. If we wanted to activate the condition ‘practiceMember’, we had to pass practiceMember in query string for the include. However, this ‘feature’ stopped working in one of our dev orgs. Any idea?
I need to be able to re-create the pivot table feature of double clicking into a number to view the detailed data behind it. I can create the chart with the data (love it) but I want to allow the ability to click on the Column to see the Accounts that were aggregated to create the chart. There are 2 models:StateAgg - aggregate model of Accounts grouped by State AccountList - Basic model - not loaded on page load When I click on a chart from the StateAgg model, I want a pop up to show the Account Names that made up that bar. There are 72k accounts so I can’t have the aggregate group by Account Name.Ideas?
I have followed the direction to “Use the File Component to Attach Files to a Record”. If I leave as “deactivate this condition” “If no row or Source Model”, then all records regardless of the Parent ID (assume because it finds no matches, so it gives me all records) are presented and when I drag a file to upload the records shows. If I change “If no row in source model” then the model shows no records as it should. However, if I drag a document to “File Upload” the record does not show in the table.
Hi , First time I notice this on a Page title component (happens often in row actions) On builder page I have the Save/cancel button as the first button (from the left) And when in a record, it’s now the last button … Cannot see any reason it happens, Any one would know a potential solution? Thx
I want users to be able to upload images via the File Upload Component. But nothing prevents them from uploading any file.Does anyone know how to restrict that?
How can I get the decline reason by using DocuSign Get Signature action Nintex workflow?
I have a global geochart with drilldown available by clicking a country. The data is appearing fine at the global level and for individual states/provinces when I drill down to view a country. What I would like to do is trigger the drilldown programmatically in Javascript. I have tried a couple of things. The first was to get a handle on the Skuid geochart component and to fire the drilldown. I can get the component handle as below, and I can see a couple of drilldown methods, but I don’t know what parameters to use and they have thrown errors with the ones I’ve tried. var chart = skuid.component.getById('myChartId');<br>chart.doDrilldown(); //parameters?<br>chart.seriesList[0].events.click(); //parameters? The second thing I tried was to bypass the Skuid geochart object and go directly to the Highcharts object. According to a couple of forum posts I should be able to trigger a Highcharts drilldown like this: var chart = skuid.$('.sk-chart-container').highcharts();<br&
I have a popup window that shows fields from a specific row of an object called Grant_Application_Requirement. Included in that popup windows is an Upload component that uploads a file relating it to the parent Grant_Application_Requirement record being displayed. This part works well. Now I would like to update a date field with the date of the last file upload. I attempted to do this by: Create an action on the model Attachment which fires when a new row is added. Action #1: Action #2: Save Changes in Model: Grant_Application_Requirement. When I run it nothing happens. Im not sure if the Action is not firing to begin with on the model or if the actions I do have are not properly relating to the right row (it should be based on the parent ID of the record on the Attachment object that was just created) Thoughts on what I might be missing to make this work properly?
Hi I have an account model which will be loaded based on the URL parameter accountid passed I have another model called “address” which is on a custom object “Address__c” , have a condition which takes account__c from account model above So now , in the field editor, for address, how could I pre populate address fields on step load ( I am using wizard , this field editor is in second step )
Hi If we select required on field property, the Skuid shows thick red line on the right by default How could we override this and make the red thick line appear on left ?
I am using ‘Adopt rows into Model’ to move rows from one table to another using row action.But the rows are getting added to the top of the table.Is it possible to add rows at the end of the table?
Hi,I have a field editor with 2-fields (UserName and Password)Once the user enters a UserName in field, is there any way to call function (a web-service method which is in APEX that is actually calling an external service to check userExists or not)without clicking on any button ?Like if the focus is off that UserName field , can we make a function call to check if he exists already ?
Hi,I have a wizard of 3-steps.STEP1–>STEP2–>STEP3I have added the below code (in action snippet for button on step1) to show error message when no row selected for a table in STEP1.var table = $(‘#CatalogTable’),list,items;var editor = table.data(‘object’).editor;if (table.length) { list = table.data(‘object’).list; items = list.getSelectedItems();}if(!items.length){ editor.handleMessages([ { message: ‘Please Select an Offer!’, severity: ‘ERROR’ } ]);}else { editor.clearMessages(); }When I come back to the STEP-1 by clicking on back button from STEP-2, still the error message being shown on page.How could I get rid of this ?Thanks in advance!
I am charting blood pressure and weight on a chart. I have hundreds of data points and I just want to capture 20 to 30 of the most recent points and then allow the end user to load more in via the table below the chart if they want more. Here is my dilemna. I want the most recent date on the Right side of the chart and the oldest date on the left. In order to do this I have been sorting Date_Time__c Asc. This switches the chart, to show the newest date on the right which is great. Unfortunately this also queries the oldest date first I.E. it is grabbing the first 20 to 30 records from 2007. Is there a way to get the newest date on the right but make the model grab the most recent 20 to 30 records instead of the first?Thank you!
I want to change the name of the file while uploading the attachment, as explained in the URL - http://help.skuidify.com/m/components/l/102565-use-the-file-component-to-attach-files-to-a-record. I changed attributes as below, My problem is, once the file is uploaded I CANNOT see the file name is being changed as configured in the attributes ({{Name}} Evidence). Am I missing something here? NOTE: I’m using this on a wizard, The field used is selected in the model and has the full access rights. Can someone give me an advice on this please? Thanks
Hi there, I am using a Skuid page from within the SFDC Sales Console and I would like the Skuid page to force refresh every time a record from within the list is saved. Here is a screenshot of the Skuid page on the left hand side and the related account record on the right hand side. The Skuid page is read only so whenever a user clicks on the account name, it will be displayed as a tab on the right hand side. My ask is how to make the left page force refresh when the “Call to Action” field is saved on the account object?
I’m trying to add multiple search boxes to 1 table and have each search box search a separate field. Similar to the image, however the tutorial doesn’t show how to do this. Thank you
I think the below screenshot will explain everything about my issue here. !(https://us.v-cdn.net/6032350/uploads/attachments/RackMultipart20160310-72092-1lsa5ww- __________ 2016-03-09_05.51.19_inline.png “Image: https://d2r1vs3d9006ap.cloudfront.net/s3\_images/1379717/RackMultipart20160310-72092-1lsa5ww-\_\_\_\_\_\_\_\_\_\_2016-03-09\_05.51.19\_inline.png?1457638992”) I set “Keep Header Visible” as true at table properties of the child page. Can I make the navigation menu be displayed over the table header?
I’ve read every post in this awesome community that contains the word “canvas”, so I’m fairly certain this is a new question… We have a visual force page that we use on detail pages for various objects (Account, opportunity, etc): <apex:page standardController="Opportunity">apex:canvasApp applicationName="Lane_Cloud" width="100%" entityFields="Name,attchCreate__c,attchRead__c,attchDelete__c,attchTabList__c,attchTabActive__c" /> </apex:page> We want to include this canvas app in our skuid detail page. Thanks to previous conversations posted, I’ve got a template set up to display the VF page in an iframe: <iframe src="/apex/c__Opportunity_Attachments"?id={{{$Model&#46;Opportunity&#46;data&#46;0&#46;Id15}}}&amp;isdtp=mn" width="80%" height="400px" frameborder="false"></iframe> The page is showing up, but without any of the entity field values. How do you get the values from the data model into the entity fields for the canvas app?
I figured I’d ask this question before I spend a ton of time on trial and error. I want to use a UI only field to add the lengths of various models. It seems I would just do something like: {{$Model.MyModel1.data.length}}+{{$Model.MyModel2.data.length}+{{$Model.MyModel3.data.length} I remember trying something like this in the past and not having luck. Would this approach work in a UI only calc field or is there another way that I need to pursue this? 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.