Complete our Nintex Community Survey
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Hello, I have connect Podio api with skuid and making a post request. The post request requires body parameters to be send as {“limit”:500,“offset”:0}.I am trying to send body parameter under data source as Common Request Body Data But this is not working.Where am making mistake.and how to pass json data in body parameter? or any other way to do this.
Has anyone had experience using google analytics to see detailed page behavior (like clicking through tabs)?
Hi All, I have a table pulling in formula field from salesforce. The formula field is of the form: hyperlink('www.test.com',"Link Title That Is Too Long") The link in the table works as intended but I am looking for a way to change the text on the link in skuid alone without editing the field itself. I have tried using a template field with no luck (only getting the same link or the raw html tag). I also attempted a custom field renderer but I am not sure what JS to leverage to achieve this. The below field renderer applied to the field gives a string but the < and > signs are not rendered correctly: var field = arguments[0]; var cellElem = field.element; var value = arguments[1]; cellElem.text( value ); The raw field value is a string in the form of an tag so I am not sure how I can use a field renderer to change the tag’s text or to have different text point to the same link. Any tips are greatly appreciated!
My company, DocRaptor, is an HTML-to-PDF API with quite a few Skuid users as customers. We’re looking for an expert-level Skuid developer who can help us simplify and deeper our Skuid integration. If interested, please send me an email at James@ExpectedBehavior.com with your Skuid experience. Thanks!
Hi, We have a custom field in one of custom object, field type: number(4,2), unique and required. Whenever there is duplicate value in the field and try to save the record, skuid doesn’t give any error message. Screen freezes. This is not a new issue. We are in skuid 11.0.5 and this issue is in one particular object. Screenshot attached.
Hi,Is it possible to render a multipicklist to a checkbox thru snippet? And is it possible to relate two multipicklists in such a way that Multipicklist B only displays the selected values of Multipicklist A? Note: Multipicklist A and B are in the same model and whenever Multipicklist A is updated, so is Multipicklist B.Thanks,Roy
We got the Spring '18 update over the weekend, and it looks like SF has changed the default setting for what is displayed in Chatter. On Friday, my user’s feeds would only show feed items that mentioned them or one of their groups.Today, my user’s feeds are showing those feed items and ALL system items - specially Tracked Changes.It appears that Salesforce has added some new functionality to the ‘Fewer Updates’ filter, but we don’t have access to the filters when we’re using the Skuid interface. Essentially, there’s no good way to tune out the chatter noise. What can I do?
I am trying to have a button on my accounts page redirect to a page to create a quote for that account. I have attempted to format the URL differently since I am in lightning. There is a skuid doc that has an example on how to format the URL to pass parameters. At the moment the URL will redirect properly when it is like this: https://afl–stageprime.lightning.force.com/one/one.app#/a0F/e?accid={{Id}} but it will not prepopulate certain fields because the accid is not registered by the new page. In the skuid docs, it said that to pass parameters the parameter needs to be inserted after one.app and be formatted so that it looks like this example they provide: https://example.lightning.force.com/one/one.app?parameter=value#/n/Account_Tab When I attempt to format my url like that, it doesn’t find the page and I believe it is because of the /n/. So the URL that I have attempted to use with this formatting is https://afl–stageprime.lightning.force.com/one/one.app?accid={{Id}}#/n/a0F. My ques
I was wondering if anyone would have any insight if loading the same skuid page is faster using a visual force page override, skuid component in a lightning page, or if there is no difference.
Hi, I recently upgraded Skuid in a sandbox to 11.0.4 Millau. I am running through our Skuidified Site pages to regression test them with this new version. I am seeing an error in the console stating http://c.cs23.force.com/IMF/resource/1513694223635/skuid__MomentJS net::ERR_ABORTED. Has anyone seen this error or know what might be going on? Thanks, Tim
I’m getting a console error is “skuid__SkuidJS:11 Uncaught TypeError: Cannot read property ‘getDataSourceName’ of undefined” every time I try to filter a particular model in my table in Millau 11.0.4. I moved this same page to an org on 9.5.17 and everything works fine. It doesn’t do this on all tables with filters. The model I’m trying to filter has several UI fields and is used in another model with a UI field with a ModelLookup formula. Maybe that has something to do with it?
I am building a mobile page and would like my deck component to display a fullscreen locked popup. Considering the sliding panel w/ a deck click interaction isn’t working, I need to resort to a popup for the time being. The feedback button on mobile pages is a perfect demonstration of what I am trying to accomplish. I was able to make my popup fullscreen, but it is still draggable. Any help on locking the popup in place is appreciated!Video demonstrates the popup fullscreen(delayed b/c snippet to bring to top), the ability to drag (needs to be locked), and the desired feedback button.
Hello,I have a record that contains 2 picklist fields, one determines the available values to choose in the other. On the record in salesforce the controlling field is set accordingly and the expected options appear in the dependent field. Although, in skuid, when viewing the record the dependent field shows all possible picklist values despite having the controlling field already set. Does anyone know why this is?
As the title states, I have a button that executes multiple actions: a model query and a popup. Upon opening the popup and closing the popup window the button no longer reopens the popup. I can’t figure out why as the button has the same setup as most other buttons I have on the same page. Check out the setup below:
Hi,I have created custom page in skuid level, I am using already available in-line snippet, In this snippet calling static resource Javascript function but this function calling not working but it is working resource javascript added in same inline snippet. I guess I miss something, Could you please any one help me- static resource Javascript is a packaged one. I have cloned but still not working.code belowvar params = arguments[0], $ = skuid.$;var appRowData = skuid.model.getModel(‘object1’).data[0];var objId = appRowData.Id;var title = 'Editing ’ + appRowData.Name;var skuidPage = ‘Newpage’;var iframeUrl = ‘/apex/skuid__ui?page=’ + skuidPage + ‘&id=’ + objId;alert(iframeUrl);openTopLevelDialog({ title: title, iframeUrl: iframeUrl});
We just moved our code from Dev to UAT and found none of the pages are loading as expected and seeing issue saying skuid theme.css cannot be found.I went and updated all the outdated themes, still no luck. I tried to open the theme we are using on all the pages but it does and load and showing the message ‘Loading theme compose’. I did an inspect and found this message ‘Cannot read property ‘iconsets’ of undefined’ in the console.Below is the message in console for all the pages:Failed to load resource: the server responded with a status of 404 (Not Found) - skuidtheme.css.But all these pages are working fine in dev sandbox.
Looking for best practice on updating Record Type via the Action Framework. Does anyone have a best practice for changing an existing record’s record type via the Action Framework? The use case is we want one of our Opportunity Clone pages to default to a different record type (Non-Subscription Revenue) than the original record’s Record Type’s (Subscription Revenue). Normally i’d use tab on first shown actions to do a field update; however, this does not switch the record type from the Profile’s default.
I have a row action in my table set to delete model row (Rows in Context). It seems to only be deleting the very first row in my table. For example, if I delete the first row in the table, the result is as expected. If I delete any other row in the table, it deletes the first row. The delete is a logical delete which updates the SF record to isDeleted, pretty basic stuff. Currently using Skuid v 10.0.5.
I am trying to create an action framework which alerts community users that there is a problem with a document. This email should come from the email address of the agent who owns the account, which are all registered as org-wide email addresses. The action framework requires a ‘sender type’ parameter to send as anything other than the current user, however any value I insert here results in a Bad Request error on fire. Digging deeper into the error message reveals that the problem is an “INVALID_ARGUMENT_TYPE”. Does anyone have any idea what a valid argument for this field would be?
We are on Skuid Millau 11.0.3. We found a problem with “When Model saved” action. Actions for when model saved event are firing even if model is not saved. I have included a sample page to reproduce this issue. In the page, I have one model called Contact and a field editor. I have made 3 fields, First Name, Last Name, and Birthdate required. I also have a JS snippet “runOnSaveActionJS” in the page which has be called from When Model saved action. While I am populating only First Name leaving other two required field blank and clicking save button, I get red error message on the page for not populating all required fields but still get console logs from “runOnSaveActionJS” and totalsuccess is true. Can anyone explain this to me. XML: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="false" showheader="true" globalfeedbackenabled="false"> <models> <model id="Contact" limit="1" query="false" createrowifnonefound="true"
I’ve got a Filter inside a Filter Set, which is based on Rows in a Model…my model is an aggregate model. For some reason, I have to double click to activate the filter. How do I get the filter to already be active without having to click first to activate it… My aggregate model is already queried on the page (screenshot below), so I can’t imagine that would be causing the issue.
Hi,I’m Using Skuid Page that override account default detail page now by setting “View” button override with visualforcec page.I Have added a new new recordtype in account now. I need to redirect user based on record type. I did page assignment suggested skuid document but its not working.can any one help?Requirement.1. user clicks Account standard Tab.2. Click any existing account to view the details.3. Based on recordtype page record the page must show different fields.(pages are already created)any way?Thanks,Sathish
My tables’s footer is receiving the field editor / button CSS I’ve applied elsewhere and its looks terrible. Any way to target the footer specifically?
Hello,I am attempting to change the background color of just one button on a popup to red. Below is my css. I have tried several variations of the code. Is this possible in a popup?#NewOppAcc.ui-button {background: red;}Thank you,Ann
I have a page include that is present within a tabset (not nested). I want to include a link in the page include that would redirect users to another tab within the same tabset on the master page - so my first question is1.) How can I find the name of my master page on which the page include/tabset is present so that I can construct the redirect URL?Next part of my question involves redirecting to a particular tab. I know how to reference a tab using the unique Id parameter on the tab, but 2.) Is there a way to find out if this particular tab exists in the tabset? I would like to show the redirect link on my page include ONLY IF this particular tab exists among the set of tabs that my page include is also present on.Please let me know if I need to clarify more.
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.