Complete our Nintex Community Survey
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
Hi, Not sure if intended this way, but created 3 button that toggle different tab sets components All with Behavior Toggle The first button all was well, the component not showing on page until button is clicked the other 2 , the components are not hidden by default, and they show on the page when loaded, and when we click on button they hide… Is that expected Behavior? Is there a way to indicate that they should be hidden by default until toggled ? Thx
In a full desktop mode the tab set should show as horizontal but sometimes shows as vertical. If I remove the components in the tab it may show correctly. It also seems to happen if the tabs have an icon.
Is it possible for a snippet to get an Id from a response body then save it to a skuid model? I’m posting to an API and getting a response like: { “statusCode”: 200, “type”: “rpc”, “tid”: 5, “ref”: false, “action”: “skuid.RemotingStubs”, “method”: “proxy”, “result”: { “statusCode”:201, “status”:“CREATED”, “setCookies”:null, “headers”:{ “Content-Type”:“application/json”, “Content-Length”:“41”, “referrer-policy”:“no-referrer-when-downgrade”, “x-content-type-options”:“nosniff”, “x-xss-protection”:“1; mode=block”, “Date”:“Tue, 11 Aug 2020 22:31:14 GMT”, “strict-transport-security”:“max-age=31536000; includeSubDomains”, “feature-policy”:“geolocation; sync-xhr; microphone; camera; fullscreen;”, “request-id”:“7db9eb68c725bcba8b3969d49d08af6c”, “Connection”:“keep-alive”, “x-frame-options”:“SAMEORIGIN”, “server”:“nginx”}, “error”:null, “body”:“{\n \"external_id\": null, \n \"id\": 1416\n}\n"}”} } I’d like to save the id in a custom field that has been created to store that id.
Upgraded to the latest release and now we can’t see the gear or it’s large, distorted and now top left. How can I fix this?
This discussion was created from comments split from: Rich text in V2.
I was testing an idea. I have a skuid page that has several page includes. I want a decision made by the user that affects model conditions on the primary page to flow through to all of the includes. So, I created a Skuid Page: Rendered triggered action sequence on the included pages that listen for Skuid Page: Rendered events on all active skuid pages on a specified channel. This makes sense to me. I then wanted to trigger these action sequences through a button on the primary page. This is where I have the question. I have an action sequence on the primary page that, as the last action in the sequence, publishes the Skuid Page: Rendered event. The included pages hear this event and all activate conditions and requery. IT WORKS! My question is: Am I messing anything eles up by creating a synthetic Skuid Page: Rendered event? The page is not actually rendering. I am just publishing a Skuid Page: Rendered event from an action sequence. It doesn’t seem like this would be an issue, I just
I’ve had an issue that has happened in several different orgs lately. A user will go to a skuid page and it will just be blank. Nothing happens. Looking at the console, there is an error saying 'Failed to read large IndexedDB value". I have found this is a cookie issue, I suspect related to upgrades, but not positive. Regardless, the solution is to clear your cookie for the page: Delete specific cookies On your computer, open Chrome . At the top right, click More. Settings. Under “Privacy and security,” click Cookies and other site data. Click See all cookies and site data. At the top right, search for the website’s name. To the right of the site, click Remove . This has fixed in on two different orgs for the users that were seeing it. It took me some time to isolate the issue, so I wanted to share the solution and let Skuid prod dev know it’s an issue.
Hello! The background colour of a Skuid Page component added to a Community is by default white when it is being loaded. Is it possible to change that colour? Many thanks! Jesús
Hi All, We are facing an issue in our salesforce org, Where we have developed some custom lightning components and we also SKUID. Lightning components require enabling of my domain feature, And as soon as we enable it , It starts breaking our skuid related functionality. Any Co-relation between My Domain and SKUID ?
Quick question… we have created a new application (using skuid) and wanted to bundle the whole thing up for salesforce.com Customers to allow an install link that includes the required skuid code? Is this doable and then suitable skuid licenses paid for by us after install?
To recreate: > Add Tabs Component → Create multiple tabs → on Non-first tab add page include component → Create an empty page → Select the empty page for Page Include component. When you go to the tab with page include component it causes a flicker (or multiple flickers if it there are multiple page includes) almost as if its causing a re-render of the tabs component. A way to avoid the flickering is if you don’t defer the rendering of tabs, but that causes a massive loading time at the very start that I cannot have. Does anyone have any ideas to avoid it? Thank you.
We have a use case where we want to set the user model id to a url parameter “teammember” but if this is not provided at all then use the usual running user as the Id It will allow us to them use one page for a dashboard with charts on running user or their team mates if necessary Cant seem to find a workaround. Any ideas would be appreciated
I have created the Master Header Page with a logo and a few menus. I exposed menu in the community. When I log in as community user I am not able to see the menu.
It has been so long that I forgot. <apex:page standardController=“MMA_Instructor__c” extensions=“skuid.Redirects”> <skuid:page page=“include_MMA_Instructor_DETAIL__3”/> </apex:page> What syntax do I use to add the specific id for the MMA Instructor Record? This is a detail page. Such a newbie question, and I am not a newbie–just forgot.
Hello, I have a table where I allow mass update for a single purpose and would like to add a label above the standard mass update checkbox so that users know what it is for. How do I add a lable to that checkbox? Thanks in advance!
Capture5.PNG Has anyone faced the error below with a lightning component before? Not exactly sure what it means. I am getting this error with specific users, but I myself (an Admin) do not get this error when I look at the page. ’ [There was an error rendering a Skuid Page component for page DHC_Physician_Search TypeError: Cannot read property ‘publish’ of undefined] ’
How to pass “Set” from JavaScript(skuid page) and get to in apex ?
Where are the caching settings on Skuid 12.4.11? Thanks!
I’ve built a custom field renderer. I want to render table rows as red when the field mode is read only and value2 is not equal to null. Value2 is a lookup field. I’ve tried both of these: if (field.mode == ‘readonly’ && value2 !== null) if (field.mode == ‘readonly’ && value2 !== ‘’) Currently, here’s my snippet – it’s showing all rows as red var field = arguments[0]; var row = field.row; var value2 = row.Termination__c; var value = skuid.utils.decodeHTML(arguments[1]); skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode; if (field.mode == ‘readonly’ && value2 !== null) { field.item.element.addClass("UpdateForm_row-red"); }
A skuid page that walks a user through a two step process of collecting data is not loading at times. When the user clears the cache on Chrome it loads again. I cannot find the cache options on the page settings. We are running Skuid 12.4.11.
I have some nested decks of aggregate models. Certain rows in the aggregate models have fields null values. It would appear that for anything with a null value that relies on Context, it does not display for the nested deck underneath. Am I doing something wrong here? How do I get nested decks to work when the context is Null = Null? For example: I have a base deck: A, this deck is an aggregate deck on a “Grandparent” model with a field “Grandparent” and a count of all their children/grandchildren. I nest a deck under that on the “Parent” model with a similar count where context is “Grandparent” = “Grandparent”. I nest a deck under that deck with the model “Child” where context is “Grandparent” = “Grandparent”, “Parent” = “Parent” This all works fine except for when the Grandparent or Parent is null. If it is null, the nested deck context underneath doesn’t seem to pick it up whereas it should be finding for instance (Parent)NULL = (Parent)NULL and showing the row in context. What migh
I have some nested decks of aggregate models. Certain rows in the aggregate models have fields null values. It would appear that for anything with a null value that relies on Context, it does not display for the nested deck underneath. Am I doing something wrong here? How do I get nested decks to work when the context is Null = Null? For example: I have a base deck: A, this deck is an aggregate deck on a “Grandparent” model with a field “Grandparent” and a count of all their children/grandchildren. I nest a deck under that on the “Parent” model with a similar count where context is “Grandparent” = “Grandparent”. I nest a deck under that deck with the model “Child” where context is “Grandparent” = “Grandparent”, “Parent” = “Parent” This all works fine except for when the Grandparent or Parent is null. If it is null, the nested deck context underneath doesn’t seem to pick it up whereas it should be finding for instance (Parent)NULL = (Parent)NULL and showing the context. What might I be
If you can see the image the red highlighted area is nothing but an iframe. I have a table which has drawer and each drawer is having an iframe which loads another skuid page. Every row of main table has drawer and every drawer has same iframe with same skuid page. How to make the height dynamic. tried some code but its not working for all the rows. It’s like once the height we got that is what the height it’s displaying for all other rows. So onload of iframe i am calling below function to make dynamic height function onLoadOfIFrame(obj) { //obj is the id of the iframe which i am trying to pass. As every row have diff ids. obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + ‘px’; //var height = $(‘#’ + nid).height(); //$(‘#’ + nid).height(height); } But’s not working for all the rows. Anybody have any idea do share how to make it dynamic which works just like the (place a skuid page in drawer as page include).
Creating a new row doesn’t place the cursor in the first input fields of the newly created record. Using the tab doesn’t move the cursor to the next input field.
Right now we made a lookup field as mandatory but if user not selecting any lookup item and trying to save it’s just showing a red border over text field. The expectation is it should display a message like this field is mandatory. How to do that?
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.