Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hi, I have 2 objects Opportunity and Opportunity Lineitem. I am showing the Opportunity line item record in a drawer based on which opportunity is selected. I have a thrid object called Opportunity Revenue which is related to both Opportunity and Opportunity LIne item. I want to create Opportunity Revenue records when user selects Opportunity Line Items. Can this be achieved?
When a field editor section is marked to not show a section header, if the “collapsible?” property was “yes - initially collapsed” prior to turning off the header, the field editor section does not render at all. Steps to Reproduce: Create new detail page for account Set the “Basics” section Collapsible property to “Yes - initially collapsed” Set the Show Section Header to false Save page Preview page Expected Behavior Basics should show without a section header Actual Behavior Basics doesn’t show at all Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account"> <models> <model id="Account" limit="1" query="true" createrowifnonefound="false" sobject="Account"> <fields> <field id="Name"/> <field id="CreatedDate"/> </fields> <conditions> <condition type="param" enclosevalueinquotes=
I’ve got a snippet that is run every time a field is updated to check whether that field has 10 digits or not. I’d like to to make sure that there are no letters in there as well. Right now, it’s only counting numbers so if I xyz1234567890xyz it’s a pass, but x123456789 is a fail.Is there a way I could have xyz1234567890 fail as well, and maybe give a different error?I’ve tried so many options from searching javascript forums, like .matches, .find, .test, and I keep getting “is not a function” errors in the console. I did not get error using .test, but it also isn’t able to detect when there’s a letter in the field.here’s the code I’ve got now, that functions to check for number of numbers, but doesn’t count letters in .length . I’ve commented out a lot of other attempts. var params = arguments[0], $ = skuid.$; var oppModel = skuid.model.getModel('Opportunity'); var oppRow = oppModel.getFirstRow(); var oppAccountNo = oppModel.getFieldValue(oppRow,'AccountNo__c'); var oppString = oppAc
When I do a mass update and change just one thing, other fields are getting cleared that should just be left alone. On the latest skuid 7.34
I am comparing 2 datetime fields in a UI field and not sure why I am not getting the results expected. IF( {{UI_Only_Field__r.Delete_Date_Time__c}} > {{Completed_Date_Time__c}} ,“True”,“False”) These are the results:
Until today I thought I understood how it works , but now after trying for 2h, I have an issue I cannot seem to fix I’m passing parent record ID( id={{{Account__c}}} )to a Page include we will call “Master PI” This Page include , has multiple other Page Include inside it. Let’s Call them “Child PI” It seems my query string is being passed properly to the Master PI page but Child PI (with query string" id={{$Param.id}} ) are not grabbing the Parameter Id from the Master PI Looking a console i see this: Any idea what I’m doing wrong? Thx
How can I set up my url in a url redirect to link to a page in a specific module?Say I have two pages MyFavoritePage (Module1)MyFavoritePage (Module2)If I use this: /apex/skuid__ui?page=MyFavoritePage I always get whatever page was created first (I think?)I tried /apex/skuid__ui?page=MyFavoritePage&amp;module=Module2 but with no success.Anyone know how to do this?
I have a simple image (company logo) in the corner of my page. When I preview the page, the image appears normally: However, when I login as a partner/vendor, the image will not display: I believe I’m using the correct HTML coding: Anyone have an idea as to why this is happening?
Having an issue with the Save button. When the Save button is pressed, an opportunity record is created, however, the page gets directed to a standard webpage within Salesforce1 (see second screenshot). Not sure if my ON-TAP ACTIONS are correct:
When pressing “enter/return” in an Rich Text Field, the data being stored in the model and SFDC field upon save contains Carriage Return/Line Feed characters. The surrounding HTML contains appropriate tags around the paragraphs but the carriage return/line feeds should not be stored in the data. If anything a the “return/enter” should translate to a but if tags are going to be applied, not sure its even necessary. Steps to Reproduce: Add a Rich Text Field to any SObject Create a stock “detail” page for that SObject Add rich text field to field editor Preview page Edit the Rich Text Field by typing a few characters, hitting return/enter and typing some more Inspect the model data Expected Behavior Model field data should not contain the CR/LF character(s) Actual Behavior Model data contains CR/LF characters Thanks!
I’ve got a table where the object has a Value field, and sometimes I want that Value show as is, but sometimes I’d like it to render as a Yes/No dropdown that has a value of 1 or 0. That sometimes is dependent on a picklist field Benchmark Type on my object’s master object. I’ve put together a snippet based on some research on the community, but I’m getting a console error that my picklistEntries variable is null and so no values can be pushed to it, specifically: “Cannot read property ‘push’ of null”Here’s my snippet: var field = arguments[0], row = field.row, isPercentage = (row.Indicator__r.Benchmark_Type__c == 'Percentage') ? true : false; value = skuid.utils.decodeHTML(arguments[1]), metadata = field.metadata, element = field.item.element, $ = skuid.$; if (isPercentage){ skuid.ui.fieldRenderers.PICKLIST[field.mode](field,value); if (field.mode == 'edit'){ var picklistEntries = field.metadata.picklistEntries; // picklistEntries.length = 0; // I tried setting the length to see if it
If setting up custom export columns for a Table Export, if you choose a field such as Email, and then change it to a Template, it will still export the value of Email rather than the template you create. The XML it creates is like this: <column type="template" headertype="fieldlabel" field="Email"> <template>{{Name}}</template> <label>Test</label> </column> If you get rid of the field=“Email” it will work <column type="template" headertype="fieldlabel" > <template>{{Name}}</template> <label>Test</label> </column> Hope this can be fixed in a future release. It seems to work fine if you choose Template without having chosen a Field first.
I was creating response grids and received this message:"System.XmlException: XML Tree depth greater than 50 An unexpected error has occurred. Your solution provider has been notified. (skuid)I cannot even open the page.
When a picklist in a field editor is marked to “required” and “none” is not allowed, after cancelling changes in the model, the model immediately has changes again because a value is getting re-established on the field when the original value of the record is null/empty. This manifests itself when the model is marked to “prevent users from leaving page”. When you click a “Cancel” button, then cancel changes and navigate away, the “model has changes” message appears because even though the model changes were cancelled, the picklist field was immediately changed again. Not sure how to really work around or solve for this one due to the way model data is processed by components, etc. Steps to Reproduce: Locate a contact in the org and ensure the “Salutation” field is empty/blank Create page using XML below Preview page using contact from #1 Click “Cancel & Go” Sample Page XML <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true"
Hi ,Not sure if there’s a reason for it, but is there a way to use a Formula UI-Only field to set Background colorI created formula field, and when i add it to table view, I see it generate proper colors, but using that field in the “Background Color” option, does not work.Works with Salesforce Formula Field, but not Ui-OnlyThe only explanation i can find, is that Skuid loads the “colors” before the UI-only formula field gets values?Pls let em knowThx
Anything I can do about this? Running "skuid-pull:dev" (skuid-pull) taskFatal error: System.LimitException: JSON string exceeds heap size limit<br>(System Code)
I have a model (VendorRecords) which needs a Condition to only allow users that work for the supplier connected to the record (i.e. the model has a “supplier” field as well). I’m trying to utilize the “Running User Attribute” in order to pull the user’s Company. There is a drop down list called “UserInfo Property”, but this list doesn’t seem to include the fields included in the Manage Users > Users section of Skuid: Am I missing something? Is there another way to look up a user’s company name? Is there a better way of doing this?
I have a very large page and have run into a head size limit and the page going to get bigger. I have read this article: https://community.skuid.com/t/debugging-heap-size-whats-happening-on-the-serverIf I go back to using includes will that fix my problems?
I have a READONLY template field in a table. I would like to be able to add a boolean field {{Acknowledge}} inside the template. Is it possible to turn off the READONLY status for just this component in the template?
Greetings,I’m trying to replace a checkbox (UI only field) with an image that will allow a user to enter more details if they click on it. The CSS that I’m using is: .custom-checkbox input[type=checkbox]{&nbsp; &nbsp; width: 20px;<br>&nbsp; &nbsp; height: 20px;<br>&nbsp; &nbsp; background-size: 20px 20px;<br>&nbsp; &nbsp; position:relative;<br>&nbsp; &nbsp; float: right;<br>&nbsp; &nbsp; background: url('image.png<a target="_blank" rel="nofollow" href="http://f')" title="Link http//for-maccom/assets/blue-checkboxgif">')</a>;<br>} It resizes the checkbox, but doesn’t display the image. Any help would be appreciated.
Just upgraded to the most current release and none of my pages can be viewed in page preview. I get this message on every page preview.
I have enough modules that the Module filter on PageList switched over to a autofill. It’s fine, if I want to select a specific module, but if I want Any Module, it doesn’t work.The option comes up in the select list for the autofill, but nothing happens when I click on it.
Is there a way to use the same page assignment for multiple profiles? Or do we have to just create the same page assignment for each profile that needs it?
I have designed a skuid page, after population any field when I am clicking save button this particular page is not showing. But when I am refreshing the page its showing the skuid page with all saved data. Plz help
I have a master page which is primarily a navigation header. One of the divisions of that header contains just a page include. The division is set to fit to content, with an alignment set to center. The included page is just a single dropdown-style navigation component.No matter what I set the alignment property of the division in the master page to, the division always aligns to the top.
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.