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
Primary_Salesperson_lookup__r.Name is a field in my model and this sort doesn’t work
Hi, I have a ComboBox custom field renderer for a time field. I have it set where the ComboBox has picklist values like “11:30:00.000Z” with a label of"11:30 AM". The user can select a value from the picklist options and it will be saved to Salesforce correctly. However, right now if a user types in a value themselves like 11:30 AM it does not get saved to Salesforce and instead produces an error (“VFRemote.js:117 Visualforce Remoting Exception: List index out of bounds: 2”). I’m trying to come up with a validation function that will validate the user-submitted value and will convert it to the value Salesforce is expecting, but I can’t figure out how to get this to work with the ComboBox. Is there a way that when a user types in a value for a ComboBox I can validate it and then add it to the picklist options as the selected option? Or is there a simpler way to handle these user submitted values? I’ve recorded a short 2-minute video to show you the issue I am experiencing - https://scre
We have a requirements to create the new records ( like a wizard ). When user save and continue, it should should reload the same newmodel and create the new rows. I can see new rows being created in table but the field editor doesn’t seems to be re-appearing ? Figure 1 Figure 2
We have a visualforce page that is loaded in an iFrame within Skuid page and it works fine on classic. But as we move forward with going to Lightning Experience, we created a Lightning Record page and custom component to display the iFrame. Which we are not able to do as the iframe is not displayed in the Lightning record page. Is there a solution to this? as I see our Evernote component which is also a iframe gets loaded on lighting record page but not our custom visualforce page.Thanks in advance for help.
In Windows OS and Chrome browser, when I press Ctrl + left mouse button on any hyperlinks. I expect it will open a new page in a new tab. However, it always opens the new page on the current tab.Please refer to this link https://superuser.com/questions/854797/why-does-ctrl-click-not-open-some-links-in-a-new-tab and help to check.Thanks.
I’d like to start measuring User adoption of pages. I’d like to see how often users are using the pages we’ve created.The best way I can think to do this is create a model that pulls in the page as a record and then run a snippet on page load to create a record that is a child object of the Skuid__Page__c object. This would log the date/time and user every time the page is viewed. I was also wondering if there is a way to use Google Analytics with the Skuid pages that someone has implemented before to do something similar?Any help is much appreciated. Thank you!
Hello! Like the title says I am trying accomplish effectively what would be a simple JOIN clause would produce in SQL between 2 models I have. One being an Aggregate model, the other being Basic and both having the account Id in common. Illustration: Agg Model Basic Model<br /> _Account__|__# of Child Accounts__ _Account__|__Columns__ A | 1 A | data B | 8 B | data C | 1 C | data D | 4 D | data Want: _Account__|__# of Child Accounts__|__Columns etc__ A | 1 | data B | 8 | data C | 1 | data D | 4 | data The aggregate model counts accounts and groups them by parent, resulting in a list of accounts that corresponds with the accounts in the basic model (the parent accounts). Does anyone know if/how this may be possible?
I added a fitler button to my page, placed it right in the middle of my 8 other buttons, and saved. When I preview my page it is at the very end. It is not where I placed it. When I go back into edit mode it still looks correct (in the middle). Why does it not show up where I placed it when I actually open the page?
Hi,I am building a custom component with a template prop. When I pull in the value of the prop/attribute I am getting the merge syntax instead of the merged values. So if in the template prop the user puts in {{{sumEstimatedHoursc}}} I would expect to get the merged value of whatever the data returns via xmlDef.attr(“valueTemplate”). Instead, I am simply getting the merged syntax back i.e.“{{{sumEstimatedHoursc}}}”.Is there a way I can get the merged value instead of just the syntax? Or is there an API I can use for getting the merged value by passing in a model and merge syntax?
I have a rest datasource pointing to bitbucket with a query like so: /repositories/compasscare/optimizecore/issues?q=((state={{state1}}+OR+state={{state2}}+OR+state={{state3}}+OR+state={{state4}}){{#search}}+AND+(content.raw~{{search}}+OR+title~{{search}}){{/search}})&sort={{sort}} I counldn’t figure out how to make a ‘conditional AND’ work with a datasource query. Deactivating a condition in skuid doesn’t change the url that’s being passed, so it was confusing bitbucket, so I went with the merge syntax. I have a filter set on the model with search properties like so: When I run the page and type anyting in the search bar, skuid is inserting 0 into the {{search}} instead of what I’m actually searching (according to the request payload data): “https://api.bitbucket.org/2.0/repositories/compasscare/optimizecore/issues?q=((state=%22new%22+OR+state=%22open%22+OR+state=%22%22+OR+state=%22%22)+AND+(content.raw~0+OR+title~0))&sort=”" But apparently it’s not inserting 0 into {{#search}
I want to conditionally render a tab based on a value in a multi select picklist. It works if there is only one value in the picklist, but stops working if there are mutliple values.So if I only want to render my tab when my picklist contains “foobar”, it will render when it’s only “foobar”, but not when it is “helloworld;foobar”. Does anyone have any suggestions for working around this?Thanks!Eulogio
Hello!I am trying to build a functionality where users can specify which type of file they are going to upload and save that information in a custom Content Version field.I am using a Tab Set with the different types of file and sending the information to a Page Include component.My question would be how to assign this value to the record created in the new page using the File Upload component. I cannot see how to query the new record on the On-Upload Success Actions property.Many thanks!Jesus
Skuid on Salesforce
I am trying to create a table of all the chatter photos my customers are posting about an object. I would like to show the photo view but I can only find “ref” fields when I select the image field. The tables list view work fine.
After upgrading to 11.2.2, when updating a page include rendered within a popup, the popup will close rather than load the content of the desired page. In our scenario, we have a set of pages to create new records and a set of pages to display record details, where related lists and additional details are included. After the save of a new record, we reload the page include with the detail page to provide confirmation that the record was saved and provide the user the ability to add related records, attachments, etc. We are using a simple snippet to perform the update to the page include and the behavior is triggered on the load() function. This is able to be replicated from the console. Note that this script works fine when updating includes not in a popup. Here is the script: var target = arguments[0], content = arguments[1], query = arguments[2]; $ = skuid.$; var pageInclude = skuid.$(‘#’+target).data(‘object’); pageInclude.pagename = content; pageInclude.querystring = query; p
I have added a table filter for our Account page that allows the user to filter by OwnerId. We have around 500 user records so the filter is presented as a search box. When the user searches for a name, clicks on the name, it should filter the table, though it doesn’t. I checked this filter in an old sandbox on another version of Skuid, it works fine. The sandbox where this isn’t working is running on version 11.2 Below is the error message I receive in the console.
Hi, I am having a problem from last two days I was unable to view the skuid page from one user (System Admin) but when I switch to another user that’s also a System admin with same profile I was able to view the same page in skuid. I thought It was a permission. Also I have checked the page viewer and page builder permission is assigned to both these users. Also this page load issue arises when I make any edit on the skuid page and reload it (maybe that’s a coincidence). Also in the sharing settings for page and page assignment I have changed it to Public read/Write for now. But Still I cannot load the skuid. Can you help me out whether some other permission needs to be fixed ? Please find the attached screenshot of the error I am facing during the issue.
Hello all again,Trying to build a cleaner method of adding and removing accounts from a custom list.1) At the moment i can add if the account doesnt exist in my list. Save model and it is added.2) I can mark it for delete in the event i want to remove it from my list. Save model and it is removed.3) If i wish to add it again, ideally i would like to just update the check box for IsDeleted to be unchecked for that given account. As opposed to adding the account as a brand new line.But i cannot figure out a way to do this.Please note this is not ‘unmarking row for deletion’ as the model at this point would have already been saved in a state of IsDeleted = True.Any help would be appreciated.Thanks,Peter
Hi,I’m trying to follow the below guide to add AWS S3 as a data source/authentication provider, but I don’t see “AWS: Access Keys” as an available authentication method. Is this functionality only available for Skuid Platform? Guide: https://docs.skuid.com/latest/en/data/aws/#create-an-authentication-provider
Can’t find the option described in the documentation below:https://docs.skuid.com/latest/en/skuid/action-framework/action-list/actions-logic.html#branchAfter running the branchMy skuid set up only has 4 options in the action for a branchAction Type Formula Formula Context Model (optional) Description Any help would be greatful,Thanks,Peter
Running 11.2.1 Error message w/ console messages when hitting “Launch Theme Composer” Also tried saving the new theme within themes table, then opening up the Theme Builder" from the wrench icon row action…this is the error message w/ console messages that appears
This is an odd one. I have a snippet that is attempting to query Tasks and Events for eventually export as one file.Everything seems to be working until the second time the loadmore function is run on TaskExport resulting in 3000 records loaded when there are many more. The model debug property reads “Pagination limit reached” and can’t load any more records. Is this a Skuid or Salesforce thing? Is there a suggested workaround?The last SOQL statement for TaskExport:“SELECT — fields — FROM Task WHERE (Interaction_Type_Bucket__c in (‘Hubspot’))AND(Start_Date__c != null) LIMIT 1001 OFFSET 2000”Here’s the snippet. skuid&#46;snippet&#46;register('exportActivities',function(args) {var params = arguments[0],<br /> TaskExport = skuid&#46;$M('TaskExport'), EventExport = skuid&#46;$M('EventExport'), ActivitiesExport = skuid&#46;$M('ActivitiesExport'), rows = [], activityModels = [TaskExport,EventExport], inputfilename = params&#46;$Input&#46;Filename, chartId
Is there a way to use the typical ‘make sortable’ feature for table columns with REST models?
I am having difficulty getting chatter component to show. In composer I can preview and it looks good. When is assign the page an error comes in saying it is looking for a social page that is not found. This happens in both classic and lightning. What am I missing?
I just installed the newest version of Skuid in our Sandbox to show the Feedback button. I enabled it, but when I try to submit feedback it doesn’t show the feeback type and click “Submit” doesn’t work. I’m doing this from a system administrator account, so I don’t think it’s a permission issue. Any idea how to fix this?
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.