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
So … yeah … I have a need to add a condition to a chart component using javascript. I’m doing this as the page I’m building reuses the same construct of components 7 times over in one page. As such I’m using a page include to manage this design construct and using the query string for the page include to add conditions to all data components in the page include. Alternatively if there is a function to swap out the model used for a chart, this could work as well. Just not nearly as neat and tidy. I’ve done for the table component without issue. For things such as when clicking a chart legend item it would add/remove a condition for that value in tables below the chart. Those rows with that value would show/hide as well. Something like this.
Hi everyone, I am trying to get twitter cards to render on posts with an image from the public facing site. Does anyone know how to do this? I found this online article but I can’t seem to get the meta to work… https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started.html Many thanks, Matt
We currently have conga mail merge functionality built into the Skuid page, but we need to add the “Log Activities” functionality that exists in the base conga interface to the skuid interface. What is the best way to handle this, do I need to make it a default option in mail merge or can we make it optionally selected through the skuid page?
I want to be able to display EventRelation or Event records in a table on the Account record if the Relation.Id/RelationId or Who.Id/WhoId is equal to the Contact.Id/ContactId in the list of AccountContactRole records associated with the Account record.So far I have tried a condition on Event object using Who.Id or WhoId, EventRelation object using Relation.Id or RelationId, and EventWhoRelation object using Relation.Id or RelationId.Any condition that references the Relation.Id or RelationId on EventRelation or EventWhoRelation returns the same number of EventRelation or EventWhoRelation records regardless of whether or not I have a condition applied.Is it not possible to use the RelationId field from EventRelation or EventWhoRelation when querying? If not, is this a bug or purely a Salesforce quirk around polymorphic lookup fields? Or am I doing something very wrong?Below is an example condition.It may be worth mentioning that the RelationId field returns contact Ids.And the model c
Skuid 11.1.13Create a picklist field called Approval_Status__c on Opportunity and add options including “To Submit Now - Previously Approved & Given Back”.Test with this page. <models> <model id="Opportunity" limit="1" query="true" createrowifnonefound="false" datasourcetype="salesforce" datasource="salesforce" sobject="Opportunity"> <fields> <field id="Name"/> <field id="CreatedDate"/> <field id="Approval_Status__c"/> </fields> <conditions> <condition type="param" enclosevalueinquotes="true" operator="=" field="Id" value="id"/> </conditions> <actions/> </model> </models> <components> <pagetitle model="Opportunity" uniqueid="sk-3OIz-212"> <maintitle> <template>{{Name}}</template> </maintitle> <subtitle> <template>{{Model&#46;label}}</template> </subtitle> <actions> <action type="delete" uniqueid="sk-3OIz-201"/> <acti
Hi, I am trying to use the test application. Here is the error i get…Error retrieving metadata for Model(s) associated with Data Source ‘SkuidSample__OData-Demo’. Please check Models’ properties to ensure they are set correctly. { “response”: { “status”: “Bad Request”, “statusCode”: 400, “headers”: { “cache-control”: “no-cache”, “Content-Type”: “application/json; charset=utf-8”, “Date”: “Tue, 24 Jul 2018 17:12:48 GMT”, “Server”: “nginx”, “Strict-Transport-Security”: “max-age=31536000; includeSubDomains”, “Content-Length”: “136”, “Connection”: “keep-alive” }, “error”: “Error retrieving data source. Check the configuration. Maximum redirections reached”, “body”: { “statusCode”: 502, “error”: “Bad Gateway”, “message”: “Error retrieving data source. Check the configuration. Maximum redirections reached” } } }
My table’s header text keeps repeating in every cell of my table and I’m not sure why. Screenshots below. Also might be related, but my filter buttons and search bar should be on the right and instead are stacked on the left. I’m using template fields in my table, if that matters. Any advice would be appreciated, thanks! Eulogio
I’m new to Skuid, so please, be gentle.I am trying to do my first override. I have created a new Skuid Contacts page. I have gone to Deploy. Here I have added the following:Contact - Tab - Organization Default - Any Record Type - Contacts - ActiveAs you can see, I want the new Skuid ‘Contacts’ page to override the native ‘Contact’ page. Everything saves fine. When I try to check by clicking the ‘Contact’ tab I’m not directed to the Skuid ‘Contacts’ page I created.I’ve been at this for a couple hours now. Any help would be great. I’m sure I’m missing something super small here.NOTES:I have completed the following and have permissions:Assign / remove user Licenses to Skuid (needed for anyone who will be using Skuid in any way) Assign users the Skuid Page Viewer Permission Set (needed for anyone who will be using Skuid in any way) Assign users the Skuid Page Builder Permission Set (needed for all users who will be creating / editing Skuid Pages) Assign users the Skuid Admin Permission Set
Skuid 11.1.13 on sandbox and production.The static resources gets created. The custom setting for skuid__Theme__c doesn’t get created.I was able to workaround this by manually creating the skuid__Theme__c setting for my theme.
I am trying to run a javascript library inside of a skuid component on a lightning page. The javascript is loaded into the page as a static resource. When the component loads on the page it gives me this salesforce error “[Cannot read property ‘application/pdf’ of undefined]eval()@https://org.lightning.force.com/resource/1518608135000/pdfobject/PDFObject-master/pdfobject.min.js”When I preview the page it loads correctly and displays how we want it to.
I prefer using a snippet to export so i don’t have to have checkboxes on my table, and it’s just more user-friendly to have a button. However, in doing so, I lose the ability to use table columns as export columns. Is there a way to access the list of fields that are used in the table?Even better, is there a way to access only the visible columns in a table? With the standard table export, it includes hidden columns, which is a bummer. I’m thinking if I could get an array of only the visible columns we could do this var params = arguments[0], $ = skuid.$; var model = skuid.$M('ModelName'); var fields = [ //Insert Array of API names for visible columns in table ]; model.exportData({ fields: fields, doNotAppendRowIdColumn: true, useAPINamesForHeaders: false });<br>
So I’m trying to use Page Includes as much as possible (based on best practices), but I’m running into problems.I have a Page Include called “CaseDetailsInclude” that does not lazy load. It loads initially with a query string of: id={{{$Model.CurrentSession.data.0.CaseId}}}I also have a queue that updates that page include whenever you select a different item (this updates CurrentSession’s CaseId).The problem comes in with the Search bar. When I search for something, and use Javascript to update the Page Include everything works peachy, but when I hide the wrapper around “CaseDetailsInclude” (to show other information) and then someone searches, the querystring initially loads, but then it reverts back to whatever it was last set to.To summarize:- Load page: Default Case Id- Use the Queue: Updated Case Id- Use search: Updated Case Id- Use the search when components need to be triggered to ‘Show’: Previous Case Id.Anyone have any suggestions on what I can check? My current thought proce
Developing Lightning App and do not want to use the standard Skuid component initially on the page because it takes up entire page. We are presenting user with a series of icons in the app and then onclick it performs whatever action. In the case where we want to open a Skuid page with the onclick, using the URL of the Skuid page in the Controller will work but seems like there is supposed to be a better way? I’m not a Java or really even a Lightning Developer but seems like can tackle this. /* Lightning Component */ <aura:component implements="force:appHostable,flexipage:availableForAllPageTypes" access="global"> <figure> <img src="image.jpg; onclick="{!c.handleClickSkuidPage}"/> <figcaption>Skuid Page</figcaption> </figure> </aura:component> /* Controller */ ({ handleClickSkuidPage: function (component, event, helper) { var navEvt = $A.get("e.force:navigateToURL").setParams({ "url": "UglyHardCodedS
I have this chart on a page to show Leads by Status. I just want to reverse the order of Status so it follows the logical path. I want ‘New’ furthest to the left (not right), then ‘Called’ etc. How can I do this? Totally stumped here. Thanks!
have a tab named “Identity”, and within that tab is a field that user can set to Pass. Once that field is set to Pass, I want the tab name to read “Identity Passed” (or even change the font color)
In the documentation for skuid.events (https://docs.skuid.com/latest/en/skuid/api/skuid_events.html#examples), the publish example has the following syntax: var config = { doSomething: true }; var eventDetails = { direction: 'vertical' };&nbsp; skuid.events.publish(‘acme.page.resize’,[config,eventDetails]);In working out a solution, the second input didn’t come through. I was able to get it to work with slightly different syntax, however:var config = { doSomething: true, direction: ‘vertical’}; skuid.events.publish(‘acme.page.resize’,[config]); Is there anything else to be aware of in the payload array parameter?Here’s the final working solution:var filter = { filterName:‘Name1’, filterValue:‘Value1’ };skuid.events.publish(“RemoveFilter”, [filter], { scope: skuid.constants.EVENT_SCOPES.GLOBAL });
Not sure if this is a problem or not, but I have upgraded skuid to a newer version in my partial sandbox (the same version as in my developer org) and noticed that it has a few components in the skuid component picker in the page editor that weren’t in the developer sandbox version…which is the same version. See the image. Are Action Sequence and Action Sequences supposed to be in there!? Is this an issue? Thanks, Jeff
Any ideas on how to implement something like this…
Running 11.2.2 Upon click of Create button, nothing happens. Attached is the console message that appears
I have a popup that contains a queue. The queue updates a page include. The page include loads with the option to create a new record by default, then when you click on an item in the queue it loads an existing record into the page include. Everything works fine in an org 11.1.14. In an org running 11.2.5, the popup closes every time the existing record gets loaded into the page include. I’ve gone through and removed every single action that closes popups on both the page include and the underlying page and it still closes automatically. Any ideas?
We’d like to rebuild the executive dashboard in salesforce on Skuid, but the feature holding us back is the that the salesforce dashboards can be scheduled and emailed out. Any thoughts on ways to do this with skuid? Hacks welcome, as I assume there is nothing out of the box for this…Thanks!Paul
How would I unsubscribe to an skuid event from javascript. Any help would be much appreciated.Thanks.
I have a deck on a REST model. I’d like to use a component condition (thanks, Pat!) to eliminate the rows where a certain field is blank. However, I’d also like to be able to add new rows to the model using the deck component. If I apply the component condition, the new rows never show up…Anyone have a good way around this without creating a whole new model just for new rows?
10.0.25 REST model on the bitbucket API. I’m trying to update a record’s Assignee on an issue. I have the assignee field set up as a reference field like so: I’m rendering the actual assignee field in a field editor as a picklist, and using a Model to generate the picklist options: The source model is on bitbucket’s team members. For some reason with this setup, skuid is including the __skuid_record__ object in the row’s changes, which creates circular reference issues when calling JSON.stringify() as part of the REST save operation: Here’s the code that’s producing the error: Skuid never actually gets to the point of trying to perform the PUT. Help? Is there a better way for me to set this up?
We use a custom theme and have a lot of CSS that we use in the theme itself rather than inline via our pages. In the past it has been very easy to open the theme builder and navigate to the CSS tab and then open the Resource Editor to view/edit the CSS. Now there is nothing when I open the Resource Editor. I need to modify our CSS but I cannot access it, any thoughts? (10.0.5)
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.