Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
We have been using a set of pages for a long time without problems, but are just now finding problems. It could be these problems started after the June update, but we are not 100% sure because the error was silent (except in the browser console).In our code, we do a series of async calls - to a web service, and then to Skuid to save data, and then in that callback, we call skuid.model.updateData to refresh our models. In the past, that last call to updateData has worked and the completion function has been called. But now, we are getting an error in the browser that “a.data” doesn’t exist (deep inside Skuid (at skuid__SkuidJS (26,10954)) and the completion function is never executed.There has been no change to this code in a very long time, but of course the data in SFDC has changed so it’s possible this is a bug in our code. I have validated that the array of models we are sending to updateData (three models) all appear legit, and not unusually large (largest one has 25 items).We
Would be a cool standard feature if the row in a table highlights when the mouse pointer is over that row.
IBV is a UI only formula field that is true if “Date bid values sent” is not null.I want to use the statement below as the button label, but it shows “Send Bid Values” whether IBV is true or false:{{^IBV}}Send Bid Values{{/IBV}}{{#IBV}}Re-send Bid Values{{/IBV}}
We have state and country picklists enabled (the mailing state and country fields are picklists in the standard contact view ), however, on the skuid page the state and country fields are appearing as text fields. I was under the assumption that skuid would respect state and country picklists? Is there something I’m missing? Standard View: Skuid: Any help would be greatly appreciated!
I’ve got a drawer bound to a table and I followed the “Add Nested Rows” tutorial to configure the drawer. I can add a template and bind the fields in that template to the child model and it will display the right data for the row, but I don’t get any results when I try to do bind a Field Editor to the same model (if I set the Context - if I don’t set the Context, I always get the first row from the detail model in my Field Editor).I have no idea what to try - should this work?
So I have created a search box and button using a field editor with a UI Only Field and a Page Title where the button is triggered when you hit Return by setting return as a hotkey for the button. (You might ask why I didn’t just use a normal table filter. It’s complicated. There are reasons. I can provide details if needed.) It works pretty well if you type some text and then click the button. It also works well if you type some text and then wait half a second and hit return. But if you type some text and quickly hit return, the button is activated but the Actions for the button seem to be run before the text in the field is actually sent to it’s model or more importantly to the condition for my SearchResults model. Is there some way to delay the button’s action until the value of the UI Only SearchString Field has been fully “set”? Below is the XML for a test page. It searches Contacts based on their name. To reproduce the issue: Try typing a name and clicking the search button. The
It seems that for dependent picklists if the controlling field does not have any values configured for the child picklist and you view that in a Field Editor component the child picklist shows as an empty dropdown. What we expected is that whatever value is currently on the record, even if it isn’t configured, would still be displayed. To work around this we added the option to the config but we have a lot of legacy records where this type of workaround would not work.
I have static resources in DEV and after uploading my skuid pages to PROD I do not want to have to manually update the respective links in PROD. Is there anyway to do this?
Hello all, My apologies for potentially a silly question … For a few months now, I’ve had a piece of JS code in my Skuid page that references the standard Javascript .getMonth() method. This code was working really well until last week, when all of a sudden, the page wouldn’t load anymore. When I looked at the console, I saw the following error: Uncaught TypeError: startDateJS.getMonth is not a function Like I said, the code used to run just fine. In fact, this is a Skuid page I haven’t modified since 6/8/2016 – it was working fine when/since I last modified it, and started displaying this error last week. Has some setting in Skuid changed, or could there be some global setting on my end that I modified to cause this issue? Thanks! Aparna
I created a skuid page for external sources to enter the leads into salesforce and made it available thrrough salesforce sites . Ideally it should be editable and everyone should be able to enter the details of new leadd, but cuurently the page does not give this edit option even after giving the page required permissions,object permissions, field ;level security permissions checking the security sharing model in Salesforce but still to no help?? i an attaching the screenshotof the existing situation and what i require Please help i need to get this done before coming wednesday Please help This is what i need the page to look like and be editable but currently it is like this PS the model and the field editor is on edit only mode in skuid.
Within a title block referencing a specific model I have a button that calls an inline javascript snippet. I would like to reference the Model that is within the context of the Title block that the button call is coming from. For example if the Title Block is referencing a Model called MyAccounts then what javascript would I use to get the Model MyAccounts dynamically? If I were calling a snippet from within a Row I could use something like arguments[0].item. But I am not sure what the syntax should be for what I am attempting.
I have a Rich Text Area(5000) that is not expanding. Watch video:https://drive.google.com/file/d/0B409lhd9sYDcZE5JbUFYM1RiSTQ/view
I have upgraded to the new microsoft IE (Edge). The CSS is being processed in the wrong order. Here is Chrome: Here is IE (Edge) Here is the CSS: Why?
I’m able to get Skuid to override the standard layout for a certain profile when a user logs into the customer portal we have set up. I’m now trying to allow a different profile to access the portal and see the standard Salesforce layout but having no luck. I’ve created a page assignment in Skuid for the profile that I want to see Skuid but the VF page doesn’t seem to want to redirect the other profile to the standard layout… Full disclosure - I’m not a developer and the one person on my team that could help is unavailable so here’s the VF page I’m attempting to use: <apex:page standardController=“Account” recordsetvar=“a” extensions=“skuid.Redirects” showHeader=“false” sidebar=“false” readonly=“false” docType=“html-5.0” action=“{!IF(canUseSkuid,‘’,redirect)}” title=“Credit Application”> <skuid:page objectType=“CreditOnly” actionType=“Tab” /> </apex:page> Any insight would be greatly appreciated.
I am trying to deploy skuid pages to production but I am getting this error:Foreign key external ID: _camino_template not found for field skuid_UniqueId__c in entity skuid__Page__c. Does anyone faced a similar problem?
Hi, I’m trying to figure out how I can reorder an entire list each time a list item is dropped into a new position. I’ve implemented something that almost works (works the first time you try and but not the second) and need some direction on what’s causing it to break on subsequent events. Here is the code: var params = arguments[0], $ = skuid.$, oldIndex, newIndex; var model = skuid.model.getModel(“Fabric”); var modelRows = model.getRows(); //Table->Display->Advanced->Unique id $(“#Skuid_Fabric_Trim tbody”).sortable({ start: function(event, ui) { oldIndex = ui.item.index(); }, stop: function(event, ui) { newIndex = ui.item.index(); for(i = 0; i < modelRows.length; i++){ if(i == newIndex) model.updateRow(modelRows[oldIndex], ‘Popularity__c’, newIndex); else model.updateRow(modelRows[i], ‘Popularity__c’, i); } //save the listed models var models = [model]; skuid.model.save(models,{callback:function(result){ if (result.totalsucess) { skuid.model.updateData(models); //requery
Let’s play ‘Is it possible?’ I had a math professor who used to always say, ‘Don’t use a helicopter to get across the street.’ I feel like the way that I am accomplishing my end result is a helicopter solution, and some of the brilliant minds on this community might help me learn to walk. Here’s a screenshot of the page: The fields in the 3 columns on the right side are all Ui-Only fields. The field that I would like to update is a long text area field called Notes in the leftmost column. Is there a lightweight way to add a phrase to the Notes field when someone marks a Ui-Only field. For instance, if you select everything under the 2000 Hz question, it would add “2000 Hz: Passed - Left, Passed - Right” to a new line in the Notes field while not erasing what was already in the Notes field.
I’ve designed a dashboard for handling support tickets. This consists of a queue which updates a page include. The page include contains a field editor and a template, which contains the HTML for an iframe containing the record’s chatter feed.(Note: I have it set up this way because when I tried adding the regular chatter component, the page seemed to break)The problem I’m experiencing is thus: within the page include page, there is a “Mark task complete” button. This updates a field on the record and then saves its changed. When the save occurs, the iframe template breaks. When I inspect it, I see that the record ID is no longer being passed to the iframe source. Any ideas on why this is happening? Happy to provide further details as required.
Hello,One of my sales rep has user locale equals “spanish” in SF.com.When he tries to update unit price on oppty product line item he receives error message : " field integrity exception : Total Price (total price must be specified)".At the moment I cannot explain why but when I change his locale from Spanish to French or English United States or English United Kingdom then he is able to update oppty product line unit price for the same opportunity.Locale German seems not to be working as well. When I change same user locale from Spanish to German, he has the same error message as above.Would you be able to assist ?
What kind of data can I put into the parameters of a Custom Apex Action? Is there a context specific merge syntax :)? Or does it only take hardcoded values?
Let’s play - Is It Possible!! Is it possible to summarize a child relationship of a parent object? Use case using native objects: Accounts, Contacts, and Cases When I am looking at a table of Cases, can I display a list of the Contacts from that account in the table? I attached a low tech example. Note: I know that the option to do this isn’t available through the Page Builder (fields –> child relationships), so I would expect it would be something that I’d do through the XML Thanks!
When following the instructions for accessing files (eg for images), I cannot determine where the field is actually searching for files. If I upload into field it will essentially start building a library but I cannot locate it. It isn’t under the files tab, it isn’t as an attachment. Where would that repository be located? How does one access the actual 'files '? The use case will be to add multiple images to inventory. Thanks
Experts, I have a model named “Unread Alerts”. I have added fields to order like shown below: Which works fine when page loaded. But, the requirement is, we need to provide a picklist to user : Sort By CreatedDate Sort By Priority Sort By Something Else Whenever the user pick one of the options above, we need to refresh the table order by the selected field. How to dynamically change table data by ordering per the field selected ?
Hi There, I have a requirement where I need to show the count of records on Tab. So I did try like below on Tab label: Unread ({{$Model.MasterAlerts.data.length}}) This helps me het something like : But, the count is not getting refreshed when rows are removed from model. How to get those counts refreshed ?
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.