Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I need help understanding how to use this action using Nintex Automation Cloud. I’m trying to create a community using the new API for viva engage that is in Beta. How do I get this to work if I created an app using Microsoft Graph API? I have created a client value and secret and was granted access to the app for yammer (viva engage). What now? I followed instructions up to step 5. Now I want to directly connect using NAC vs power automate. Introducing the Community Creation API for Viva Engage on Microsoft Graph Beta - Microsoft Community Hub
In Millau, new rows in models with conditions that set to ‘a blank value’ have a ‘null’ string added instead of being null. This then leads to an error if the field data type is not a string. Model condition New Row:
I want to see the name of the month, not the number in the chart below: This page says I should be able to set date granularity options on the category, but I’m not seeing those…
What’s wrong with this? Having issues setting the values using additionalConditions property. All the fields are triple checked to be included in all models. Values are showing on this.Id and children.data[0].Id when setting breakpoints.Rows get created without fields placed in additionalConditions property. var params = arguments[0], parents = skuid.$M('parents'), children = skuid.$M('children'), grandchildren = skuid.$M('grandchildren'), $ = skuid.$; $.each(parents.getRows(), function (){ children.createRow({ additionalConditions:[ {parent: this.Id} ] }); grandchildren.createRow({ additionalConditions:[ {parent: children.data[0].Id} ] }); });<br>
Hello All, We are currently using Lightning Design Theme with Millau version, and we are facing an issue with the “Flag for Deletion” within the Drawer, it won’t change the row background color to PINK as it was used to work before. But when we tried to mouse-hover on the Salesforce main-page which is outside of the Drawer, it changed the row background color to Pink. Any help is appreciated.
I’m trying to set certain colors for values within an aggregate model (or any model, really). Say the values are either “Off Track” (Gray) or “On Track” (Green).I have them sorted alphabetically, so Off Track becomes Group 1, On Track is Group 2.But when the model returns 0 records for Group 1, and [All] records for Group 2, the donut chart displays Gray, because that is the first color listed in the colors section.Rob Hatch posted a snippet here of how you can “lock” colors in a bar chart; it works fabulously for those, but he wasn’t able to modify it for other chart types. Wondering if anyone knows how we can get it there?https://community.skuid.com/t/have-certain-colors-represent-certain-values-in-charts
We are deploying a skuid page through a lightning component, which is placed into the right hand panel on a record detail page in lightning. The content of the skuid page takes a little while to load. Would it be possible to show a spinner whilst waiting for this content to load, to show the user that there is more information coming into the page? Ideally this would use the “aura:renderIf” attribute within the lightning component - https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_aura_renderI… e.g. <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global"> <aura:attribute name="pageLoadComplete" type="Boolean" /> <aura:renderIf isTrue="{!v&#46;pageLoadComplete}"> <skuid:page page="InquirySectorsComponent" id="{!v&#46;recordId}" /> <aura:set attribute="else"> <!-- show the spinner until the page is loaded --> <div class=&quot;demo-only&quot; style=&a
When Model saved action is firing before model is saved. I have created sample page with one model and one table with two required fields. Tried saving record without populating required field. Of course record got an error for required field being empty. However “When Model saved” is fired. Here is the Xml of the sample page for this issue. <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models> <model id="Contacts" limit="5" query="true" createrowifnonefound="false" datasource="salesforce" type="" sobject="Contact"> <fields> <field id="FirstName"/> <field id="LastName"/> <field id="Email"/> <field id="Birthdate"/> </fields> <conditions/> <actions> <action> <actions>
The Flow is, whenever field is updated in table row, i need to capture the Id of the particular row. Tried using multiple approach but doesn’t seems to be working. Any help would be appraciated.
I noticed that after update, you’re unable to close popups from Templates. Regular popups can close just fine; however, even including a button in the custom template popup with action ‘Close All Popups’ doesn’t close it.Video below shows the behavior on two separate pages with both a custom & standard layout template.
I have an Events model on which Advanced > Query Deleted / Archived records is TRUE. When the page loads, archived Events are included in the query. However, when the model is requeried or the table sorted (a type of requery), archived Events are no longer included. I’m running vs.10.0.9.
Just testing some things on the new release and I noticed an issue on refreshing a page. This happens intermittently so I’ve been unable to pinpoint the cause. What’s happening is the theme sometimes displays correctly, and when refreshed it shows the buggy lightning theme view. Also, whenever you switch over to the Lightning Theme as the org default, it shows that buggy view across the board. All page support files have been generated and this only started showing up when we updated to 11.0.1 this morning.
I managed to corrupt a page by messing up the html. When I restore a version from 2 weeks ago I am getting this message: "Visualforce Error Help for this Page System.XmlException: Failed to parse XML due to: in epilog non whitespace content is not allowed but got h (position: END_TAG seen …h… @44:449) An unexpected error has occurred. Your solution provider has been notified. (skuid)" The page is RM1_Lead_New_Member_Single
Hi Guys,I am running SKUID version 9.5.5 on my salesforce org. It is very slow and takes ages to load up a page. How can I solve this issue?Thank you
I have a Wizard component, which has a tabset in each of its steps, and a template component in each tab. Here’s a section of XML showing the structure … The issue is I see wasted whitespace above the tabset and between the tabset and the content of the tabs Is there any way to style the wizard, tabset and tab components to control the height of these white spaces or remove them entirely? Thanks!
How do i add a search field which looks at specific field e.g. location on the SKUID page.Thank you
I know there is the option to have a table convert into cards for mobile, but there are some circumstances that I would like to have an actual table display and scroll through it. I have several tables like this. On mobile safari, the up/down scroll is fine, but right/left is really bad. Most of the time it doesn’t respond to my swipes. I’m using a sticky header… maybe that has something to do with it…
Does anyone know of an easy way to force the contents of a tab to reload every time you click on it? Here is the catch: the contents of the tab is a PageInclude component. Therefore, the Models it contains are not in the Parent Tab Page - otherwise I would just use Tab Actions to requery the model. Here’s the setup: Parent Tabbed Page - tab page with 3 tabs representing 3 Lead “Statuses” (Open, Working, & Qualified) Child Page - Each tab includes a PageInclude component that loads the same page, but the tab filters the page condition via a Query String in the Page Include component. How it works: When you click on the “Qualified” tab, it loads the Page Include and feeds the Query String to the “Filterable, Off by Default” Model Condition called “ProspectStatus”. So basically it only displays the Leads that are in the “Qualified” status. Clicking on the other 2 tabs (“Open” or “Working”) yields the proper results. This is all working just fine. Here is my problem (I’ll use a
Anyone used Salesforce Big Objects with skuid? Any special considerations?
Hey, I am trying to use Skuid for SF and getting this error message when attempting to upgrade. Any suggestions?This app can’t be upgraded. There are problems that prevent this package from being installed. Dependent class is invalid and needs recompilation: Class skuid.Utils : Method does not exist or incorrect signature: void publish(List) from the type EventBus
Automatically generated filters are great! But I must be missing something, because I don’t want to show options that would filter for 0 records. How do I exclude options from the filter if the model does not have any records that match that value Also, any idea why my “Other” option wouldn’t be showing here?
Hello Team, We recently upgraded skuid to Millau 11.01 version in our dev org. After installing Millau page components such as table is not loaded on page load. This does happen 7 out of 10 page loads. Just wondering if all components are not loaded on page load (may be components are loaded asynchronously). Anyone else having this problem?GyanThank you.
Hi, we are planning to upgrade to Skuid’s latest version. Would like to know the general steps or best practices to make sure all our Skuid pages are working as expected after the upgrade. Thanks!
Hi All, sforce.apex.execute works well in classic mode with snippet, but fail in Lightning experience. Any help is appreciated.
Hello, I am using standard redirects for the Standard Salesforce objects Tab pages. I am attempting to show a friendly title in the web browser tab (chrome) to replace the whole URL that currently shows up. Below is the VF page markup, but it is not working. No error msg, just continues to show URL in web tab title. I have read the redirect tutorials and posts, but am not seeing where I am going wrong. Any suggestions greatly appreciated, Thanks! <apex:page standardController=“Contact” recordSetVar=“c” extensions=“skuid.Redirects” action=“{!redirect}?page=ContactsHomeNew” title=“ContactsHome”> </apex:page> Ann
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.