Deep dive demo webinar: Get an in-depth look at the enhanced Nintex CE Platform
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I have trying to call a apex method annotated as RemoteAction from a Skuid snippet. But am getting the below error - VF Page - <apex:page controller=“SurveyHelper” docType=“html-5.0” readOnly=“true”> <skuid:page page=“XYZ_Page_Include”></skuid:page> </apex:page> JS Code - var params = arguments[0], $ = skuid.$; var surveymodel = skuid.model.getModel(‘Survey’); var surveyrow = surveymodel.getFirstRow(); var accountname = surveyrow.Account_Number__c; var xyz= surveyrow.xyz_Type__c; console.log(accountname); console.log(projecttype); var SurveyHelper = SurveyHelper.getquestions(accountname,xyz); console.log(‘SurveyHelper ====>’+SurveyHelper); Error message - Uncaught TypeError: Cannot read property ‘getquestions’ of undefined
Hi all, is it hard to write some javascript that will allow a result returned from the Search component to be auto selected and select actions run if only one single result is returned from a search?Anyone up to the challenge )
I have a page include that the set focus is not going to the first editable field of the field editor any longer. I expect to see a blinking cursor in the scan item field when the page include opens. I used to have a snippet that used to work to ensure the set focus went to the “Scan Item” field but that stopped working also. I have tried two different versions of the snippet that have worked in prior Skuid versions but nothing has worked so far in version 12. 1st JavaScript Version var field = arguments[0]; $ = skuid.$; var delay = ( function() { var timer = 0; return function(callback, ms) { clearTimeout (timer); timer = setTimeout(callback, ms); }; })(); delay(function(){ $('.nx-field > input').first().focus(); $('.nx-field > input').first().select(); }, 400 ); var params = arguments[0], $ = skuid.$; 2nd JavaScript Versionvar field = arguments[0]; $ = skuid.$; var delay = ( function() { var timer = 0; return function(callback, ms) { clearTi
I recently upgraded to version 12.2.13. On one of our pages we use Skuid’s Queue to quickly create records in a table by clicking on the names in the Queue. When you click the records in the queue a corresponding new record is created in the table. They will keep doing this until they have added all the records. Since the table has not been saved yet it is still in EDIT mode. the end user then selects multiple rows, or all rows in some cases and does a MASS UPDATE to add additional data to the fields. In the past the mass update would leave the table in EDIT mode and they could continue to tweak the records before saving. After clicking the Mass Update in version 12.2.13 the table switches to Read with Inline-Editing (which, by the way, is what the table is set to but since they are still in the process of adding new rows it used to stay in EDIT mode until save was clicked). Switching to read with inline editing requires the end user to click into each row after the mass update
Hi Guys,I have a table with a popup with the file upload component and trying to do the following:Drag and drop / Upload the document, this works well but I’m trying to add an on_upload Actions that contains a picklist(radio buttons) to choose the type of document it is and save the recordThe Problem I’m having is that I cannot find where to grab the ID of this newly created uploaded document, I can see it in the Dev Console when it’s created but how do I grab it , so I can make changes to that record?Any ideas would be appreciatedThx
Making use of the Global Field Renderer inline code and this the Password field renderer isn’t handled appropriately.Is there something passed into parameters that I can make use of to replicate the password rendering? Better yet, is there a Skuid js field renderer for passwords?
Hello Everyone, I have tab(let DE) which includes some other skuid page(Page DE). The tab has one action which publishes an event under Whenever Rendered and this action is defined in Page DE.The skuid page (Page DE) has other action sequences and JS snippets which calculates data. I want the calculated data to be displayed on clicking on tab DE. I added an action under Whenever Rendered which runs a skuid javascript snippet. var params = arguments[0], $ = skuid.$; var pageInclude = skuid.$('#ks-xxM-1058).data(‘object’); pageInclude.unrender(); pageInclude.load(); where ks-xxM-1058 is unique id of the page include under tab set. But this is not working as expected by me. How can I load that calculated data and refresh each time the tab(DE) is clicked?
Error message “This page has an error. You might just need to refresh it. First, would you give us some details? (We’re reporting this as error ID: -1301789121)”
I am working in lightning enabled Salesforce on API V1 pages. Is it possible to show dropbox within my skuid pages. I have Dropbox for Salesforce (https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000000prqLEAQ) installed in my org and when I look at standard SF pages I see the dropbox app which I can see and upload data to and from drop box. I would like to see the app within my Skuid page.
Atlanta law firm looking for a Salesforce Admin/Developer. https://www.indeed.com/job/salesforce-administratordeveloper-300b2ee969aea58d
How do I configure a button on a page that when the user clicks it, it updates a check box on a related record to TRUE.
In all my SKUID pages and all my tables I’ve never been able to get sorting / searching client side to work. If sort/search client side is checked (enabled), it will not function, and will only work if it’s being done server side.Additionally, I’d like to be able to sort/search client side on a client side model (not a queried model, but something put together programmatically, either a UI only model or adopting rows into another model) It appears there is no client side search/sort for these sorts of unqueried / not saved to Salesforce models.What’s going on here? Why am I unable to do client side sorting/searching for any/all components on my site? Is this a generic functionality not enabled or is there something wrong with my instance / all of my pages?I’m using SKUID API v1 and SKUID version 12.1.7.Any assistance on this would be most helpful.Thanks!
We have enabled Advanced Currency Management is our org. I see in Skuid documentation that skuid supports Parenthetical Currency Conversion but it does not support Advanced Currency Management. I think this may the root of my issue. We use Skuid to create a quote document. On that document both the currency of the record and the currency of the user (if different from the record currency) appear on the quote document. This happens whether Parenthetical Currency Conversion is enabled or disabled. We only want the record currency to display. We want the user currency in parentheses to go away. Any thoughts on how to fix this? Is it fixable?
Skuid 11.2.10 The common.css introduces the following styling that messes with skuid tables in certain situations. th { text-align: left; font-weight: bold; white-space: nowrap }```  So I added the following to the theme. table.nx-skootable-data th { white-space: unset; }
I stumbled upon something interesting while setting up a new Action in Version 2 and was curious if this was intentional. When trying to take a single row’s context and create 2 records in separate models, the second row creation inherits the context of the first. Example. From a Contact Table an Action that on click created a row on the Contact_Team__c model and then creates a row on the OpportunityKeyContact model. You’d think that using {{Id}} for both would use the original model (Contact) Id for both. But in actuality once the Contact_Team__c row is created, the context being used to create the OpportunityKeyContact row is the Contact_Team__c row’s Id. Was able to circumvent this by having the second part of the Action use {{Contact__c}} which does transfer the data correctly. Was just wondering whether Action framework establishes action context in order of row creation. *If I set the Key Contact’s row creation to {{Id}} it doesn’t use the original model’s {{Id}}
We have a new installed app with custom fields (in standard objects) and custom objects. When I add the fields to a native SF layouts, they populate and appear. When I add them to a Skuid layout, they don’t appear (I don’t even get the field labels). I think this might be a permissions issue but not sure where I start on that.
I am trying to get the current loaded model id in my document ready method.(function(skuid) { var $ = skuid.$; var params = arguments[0]; var activateHandler = function() { skuid.$(“#bodyTable .nx-conditioncontainer-left .nx-conditiontoken.nx-actionselect .nx-actionselect-arrow”).on(“click”, function() { setTimeout(function() { skuid.$(“#bodyTable .nx-conditioncontainer-left .nx-actionselect-dropdown .nx-actionselect-dropdown-item”).on(“click”, function() { if (this.innerHTML === ‘** All Years’) { console.log(‘All Years’); console.log(params.model.id); } }); }) }); }; $(document.body).one(‘pageload’, activateHandler); skuid.events.subscribe(“models.loaded”, activateHandler); })(skuid);
Can we set “Max # of records (Limit)” property of any modelthrough salesforce custom label.Used below two approaches for its solution,1. Used custom label directly{{{$Label.CustomLabel }}}2. Created one UIModel and set salesforce custom label value to its UIOnly field and then put it in the "Max # of records (Limit)" value.{{{$Model.MaxRecordsModel.data.0.MaxRecordValue}}}
Working on building styling variants for our components and I ran into something i’m not sure is intentional or something I can work around. The style variant when applied to a Tab Container works great; however, when the Tab Container is stacked vertically due to page size limitations, it loses all its style settings. I’m hoping to be able to design a “Reports” page with direct links to relevant reports which can also be used in the footer icons. It just looks weird once it’s stacked vertically since the Tab Name’s are also scaled down. There’s no settings in the Design System that allows me to adjust the vertical tab settings but I would’ve assumed this is inherited from the Tab’s style variant. Below is the same exact page, one with enough screen real estate to display fully, the footer has everything truncated and loses it’s styling.
Any updated ETA on the tool Skuid is working on to migrate existing pages from 1.0 to 2.0? The latest I could find in the community was from 4 months ago, https://community.skuid.com/t/convert-page-built-on-template-to-page-running-on-design-system?topic-reply-list%5Bsettings%5D%5Bfilter_by%5D=all https://community.skuid.com/t/best-practices-for-migrating-pages-from-api-v1-to-v2
In V2, when using a page include, when elements expand beyond the initially rendered container for the page, they don’t naturally expand into the overall page cohesively. This is most pronounced with picklist where when a picklist is selected, the include section inserts as scrollbar and the picklist renders behind the page rather than above. This is behavior I would expect with an iFrame, but page includes should be treated as components of Skuid pages and have an integrated UI. Here’s a before and after when selecting a state picklist from a form on a page include:
Skuid’s API has so many capabilities, which we leverage through Javascript. I’m wondering if anyone has tried to leverage it via a data source. There are certain sections, like the utils API where I could see some use for passing in a value from another data source and then using the response in a model.
Hey Everybody, I love Microsoft SQL Server! I recently had need to build out a test using the “Azure” flavor of MSSQL called Azure SQL DB.Thinking others might benefit, I put together this quick doc: <a href=Azure and Microsoft SQL.pdf - Google Drive" title=“Link: Azure and Microsoft SQL.pdf - Google Drive”>https://drive.google.com/open?id=1LVxrJxV3-qzZPAwmQUi3tqTPtkWboBnGWarnings and disclaimers: It seems like the Azure Admin user interface changes quickly. If you use this doc as a reference but find things not quite matching up, I’m guessing it’s because the Azure Console changed on us. Hopefully it won’t be a big stumbling block. This is just for testing purposes. Do your company IT folks a favor and get them involved if you sense that you may build something out of test that may end up being used in production. Happy Building!~Carl
Anyone know how to customize a Chatter feed through CSS? We have a Chatter Feed we have made available in a sliding panel as a part of our master page. We only want the user to be able to view the feed. We allow the user to interact with Chatter from a specific record. We also do not want our Users to be able to navigate to certain objects from Chatter (ones without a Skuid Page Assignment).How can we remove the quick actions on one Feed without removing it from all Chatter? How can we eliminate all hyperlinks from a single Chatter component? And for extra credit:It would be fantastic if we could eliminate hyperlinks to particular objects within Chatter, as opposed to eliminating all hyperlinks.
Hi all, We use the import wizard to import contacts and accounts and just started having a problem with it. When we choose which file and click next to map the fields, we receive this error: It occurs for different files that have a lot of data rows and also occurs for files that have only a handful of data rows. We have checked there are no empty columns in the middle of the data and it is saved in the correct .csv format. Thanks in advance for any help
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.