Upcoming Event - 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 have created an opportunity wizard, I have workflows set up to perform field updates when the record is saved. When I run the preview of the wizard, the workflows will fire and update the opp record, but I cannot see those changes in the wizard view, I have to go back to standard SF.
I have a custom Skuid page embedded in a home page component that displays a list of custom objects as “cards” (see screenshot attached). Currently, all Internal and Partner users can access the custom object listed on the cards by clicking on the Record Name. This is working just fine. Here is my template code:
HiFor some reason a scroll bar is showing on my field editor in a tab set with the left scroll bar.There are multiple rows from the data model (2 rows) so the field editor is reproduced twice.There is no need for a scroll bar - it scrolls to either blank or all fields.Why is this scroll bar here? How do I remove it? ThanksErin
Hotkeys before Superbank allowed for all Hotkeys to work at the same time. For example, I have a Hotkey on a popup that saves and closes the popup that was CTRL S and I also have a button on the main page that was save that was CTRL S. When you pressed CTRL S on the popup, it would save as well as close the popup. Now if you press CTRL S with the popup open, only the button on the main page is triggered and the popup does not close. I could add the close topmost popup onto the main page button to achieve this same thing, but then the save button will not grey out once the model has saved because it will be a multi-action button rather than just a save button.
Is it possible to dedupe the data in a Model used by Chart component before it is displayed. Here’s my scenario, I have a report that counts number of a custom history object which logs the historical status of an object and charts it out split down by a number of different fields in different charts. However in some cases a record may have more then one of these history records as it may have been through a status twice, in the chart I want to only count each status history once. Is it possible to write something custom do modify the Model before the chart displays/splits the data? I’m fairly new to Skuid so apologies if there’s something obvious I’ve missed…
Over the past few days I developed a script to use with charts to update their tooltip with additional data using the “Before Render Snippet” option on a chartThis was working and demo’d yesterday, however I came in this morning to a message from my boss saying none of the charts I modified are working.I’m now getting this error “Uncaught TypeError: Cannot set property ‘formatter’ of undefined”Inspecting the chart object I see the Tooltip node is no longer exposed, was this changed? I also checked the installed package and I can see the following“Modified By Skuid, 18/02/2015 02:02” so it looks like a new minor version of the package was pushed last night? Below is a simpler version of my code that causes the same error: var chart = arguments[0]<br>chart.tooltip.formatter = function(){<br> s = 'my test string';<br> return s;<br>}<br>&nbsp;
Is it possible to add “default row” when Drawer child table have no records for corresponding Account record in List view?
I have a table for which I need some custom validation when fields are edited. I want to create something like:Action: When a specific field on a row in model is updated, run a snippetSnippet:If field X (which is the one that was updated) is not empty and field Y (in the same row) is not empty, revert the value of field X back to its original value and show a message (similar to an issue from awhile back would be great), or even remove the value from field Y.I may be able to figure this out with some of the existing examples, but I can’t determine what arguments are passed into the snippet in this case. How do I refer to the record/context of the current row that contains the field that was changed? I can see that “arguments[0]” in my snippet contains an object, but what object is it? Every attribute I try to access (index, value, id, row, etc.) of that object is undefined.
I am new to Skuid. I have managed to set up products on a create opportunity page, but I cannot figure out how to configure the revenue schedule associated with each line item. I would be fine with having it on the page, but would prefer to use a pop up if possible. I really don’t see any tutorials or pre set up pages that include this feature.
I am still spinning up in SKUID so I apologize in advance if I am not using the right terminology 🙂 . We have a problem when loading a page in that the focus is going to a control way down the page. There is javascript that will scroll to the top of the page - is there a straight forward way in SKUID to add this javascript to a SKUID page so it is the very last thing to run (so when the page is done loading the user is at the top of the page)?
Hello!I suspect what I’m trying to do is in here but I’m not having any luck with it.Here’s what I’m looking to do:I have a lookup field in a table (Inventory_Item__c). I also have a currency formula field in the table which references a field on the looked up record (Price_current__c). After selecting a record in the lookup the formula field is only populated when the model is saved.I’d like the formula field to update when the lookup is updated prior to the model being saved. If easier, the formula field need not be a formula field and could just be a lookup__r.fieldname__c reference using skuid.I’m guessing I need to use a snippet field renderer combined with an event listener. Would someone be able to point me in the right direction as to how to put this together?Cheers!Louis
Anyone with a quick pointer on how to access {{$User.userName}} in javascript?Thanks!
I am showing accounts with contacts in list view(contacts are showing with help of drawers)Every thing is working fine except below issues in Drawers 1.I gave “show all” in visible rows (in Pagination section of drawers). But drawers table of accounts didn’t show all contacts. When clicking “Load More” button, its showing all contacts. How to load all contacts without “Load More” button click on Drawers contact table? 2. How to hide “Showing Rows 1-1 of 1+” in Drawers table? My XML code: {{Name}} {{Model.label}} var params = arguments[0], $ = skuid.$; var field = arguments[0]; var value = arguments[1]; console.log(field.mode); if (field.mode === ‘edit’) { var disabilityOptions = ; skuid.$.each(skuid.model.getModel(‘Status’).getRows(), function(i,row) { console.log(‘—row----’+row); disabilityOptions.push({ value : row.Status_Value__c, label : row.Status_Value__c }); }); console.log(‘—disabilityOptions----’+disabilityOptions); var disabilitySelect = skuid.ui.renderers.PICKLIST.edit({ ent
I have a text area field (Comment field in the picture) that is set to ‘Required’ in Skuid. It does not display a red outline around the field the way that other fields do. How can I fix it?
I have a time field in SFX that I need to have display the minutes in 1 minute increments instead of 5 minute increments. I remember this being a feature in V1 but cant seem to find the option for v2. We have time reporting fields that need to be accurate to the minute. Thanks,Grant
Is it possible to set multiple values in a condition based on records selected in a table component?For example, I have a list of opportunity records in a table. I select 3 of them and press a mass action button. I want to update the condition on my aggregate model to calculate the value of those three opportunities.
Can someone give me a quick thumbs up/down on my syntax? var $ = skuid.$;<br>var mSTD = skuid.$M('STDTest');<br><br>$.each(mSTD, function(i, row){ <br> value += row.STD__c + ' (' + row.Results__c + ') '; }); If my model STDTest has two rows:Row 0 has STD__c: HSV1, Results: NegativeRow 1 has STD__c: HIV, Results: PositiveI’m trying to produce a text variable ‘value’ that would look like:'HSV1 (Negative) HIV (Positive) 'Am I understanding the way $.each works?
Sometimes from a usability perspective, it makes sense to show more than one line/row of text.For Example, I have a “Notes” field on the right side of a page and about 10 rows of info to input on the left side. It would be great if I could specify more than one line of text for my stuff on the right. I know that with Text area, we can expand, but sometimes I have 10 rows to the left and it would be great to have 10 rows of editable space to the right. It would match, make more sense, and be a better experience.This basically allows the user to input text without being stuck in a tiny box.Additionally, I’ve used .nx-page { font-size: 75%; } to decrease the size of my font… but that doesn’t seem to apply when inputting text.So sometimes we are stuck with a tiny text field where we can only input a few words that are visible at a time when we have the space to allow more. It would be great if we could have the text be smaller as well as make the text area or even tex field, 10 lines b
When doing a search from a lookup field on a table, is it possible to configure Skuid to allow multiple records to be selected in the search window and transferred to the table, say I wanted to select all 5 records in the table below:
We are trying to render a button on page load where we need to call some web service method and render button based on the value returned by the method (In this case User Record Access object as return type)
Hi - I’m trying to use jquery-ui-map on a SKUID mobile page. I can pull in a model and use that to set markers on the map, but when the page renders with the map, I only get the top left tile of the map. I’ve tried using the .gmap(‘refresh’) but without success - see screenshotAny ideas on how I can get the full map to show when I open this panel?Thanks
Is this post correct? Can I set a global variable inline that is not within any function and use this variable anytime I choose so long as I don’t refresh the page? For example, can I run a snippet which sets the value, so something in a popup, then run another snipper that used this global value.
We have an object called location with a % complete field that has history tracking turned on. The history object give us a created date and the new value every time the field is edited. We created a chart which shows the % complete in the x axis and the location name on the Y axis. We also created a table showing these values. It works great in that it shows the last % complete value of each location as a bar from 0% - 100%.Now what I want to do is filter this this with a start date and end date the user can choose. The bar would be a stacked series where the first color shows the % complete at the start date and the second color shows the % complete at the end date.For example if on Monday you were 10% complete and Friday you are 80% the chart show a dark blue bar going to 10% and a light blue bar continuing from 10% to 80%. Right now I jsut have a single bar going to 80%How can we get this to 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.