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
Apologies if this is a duplicate. My first post didn’t seem to load. I have a super basic queue in the left div of 2 on a page. The filter aligns right and cuts queue width down as well as running over header. I have looked at the other posts which have been marked resolved and fixed but I cannot get the filter to align or stay within the header. Thanks
Hong Kong data doesn’t appear on the geochart visualisation - I am forced to use the country code for China, CN, rather than the country code for Hong Kong, HK. Is this a bug?
In regular HTML and Javascript I can get a button to pop up a window and redirect to a page. We’v updated our Account page in skuid, but I want to view the Salesforce Classic page by clicking a button that would popup a window or go to a new page using this syntax: https://domain.my.salesforce.com/{{{$Model.Account.data.0.Id}}}?nooverride=1&amp;sfdc.override=1 What is the js syntax for my button in skuid that would popup my Salesfoce Classic account page? Here’s a code pen showing the button function in standard HTML code: https://codepen.io/nickfs000/pen/QQXapY The js script used was: <script> function myFunction() { window.open("https://www.skuid.com"); } </script> I’m guessing I would replace .“https://www.skuid.com”; with this code? https://domain.my.salesforce.com/{{{$Model.Account.data.0.Id}}}?nooveride=1 Thank you!
I am unable to get the bubble plot to calculate a value for the size component, returns zero and shows all series data as the same size
I have the following setup:Lightning Page1 -> skuid page lightning component -> skuid page 1Lightning Page2 -> skuid page lightning component -> skuid page 2If render Lightning Page 1 first I see the component rendering skguid page 1 correctly. If I then go to Lightning Page 2 I see skuid page 1 rendered not skuid page 2 as configured and expected.If I refresh the browner page while I’m on Lightning Page2 then I see skuid page 2 rendered correctly.I made sure that none of the models on skuid page 1 & 2 had the same name. (Everything should have a unque model ID. Any other idea what could be cuasing this?
Is there a way to bcc a list of email addresses when emailing from skuid using the “Send Email” data source action.
I have a model querying Contact and a table + drawer that pulls from that model. I would like users to be able to edit fields on a given contact’s account. I’m using the standard AccountId lookup field to add these account fields to the Skuid page, but they can’t be edited (only viewed) when using the page. Is there a way to make them editable? In the attached screenshot, the highlighted fields are the Account fields and the single “Default Event List” checkbox is on the Contact (which is editable). The two account checkboxes are accessed as “Account.No_Solicitations__c” and “Account.Postal_Mail_Opt_Out__c” in the model.
Hello! If I have a contact based model and within that model I have the Account Name but want to have a link to that Account page in SFDC, how would I do that? Thanks so much!
Hi Team,I am rendering a field as picklist using custom rerender, the value of the field can have special characters. So we are seeing issue while rendering the value on the skuid UI.Value in stage is showing as below instead of RFP & Financial analysisStage : RFP &amp; Financial analysis
Has anyone used a snippet or ui-only field to calculate the median for an aggregate model?
how do you make the total price value appear as a number e.g. containing commas. So the number above should read £671,502.29 . The field is a sum of the TotalPrice on opportunity line items
Trying to implement reCAPTCHA on a force.com site. Has anyone done this?
I have a Model such conditions are activate/deactivate in Table by Toggle Filter Something happens with this Toggle Filter that is not working for kind of conditions where data is (or not) including multiple values. FIELD : myFieldOPERATOR : “is in the set of values” / “is not in the set of values”VALUE : X, Y, ZSTATE : “This condition, named myCondition , can be modified by filters, but is on/off by Default” Problem is, when Toggle filter is active, it performs the action… Let’s say Activate Condition 1. But when trying to undo the action, the filter is doesn’t Deactivate the condition. Here is a test XML page you can try There are two tables: First one, for model AccountsEquals with the working Toggle Filter.Second, for model AccountsIn with the Toggle issue.
I realize that the button when it appears runs a snippet but is there anyway I can force this to run as the button isnt appearing for us when we think it may help.
I set up a button with redirect URL. The URL for particular account is:https://c.cs65.visual.force.com/apex/ConvertOpportunityToLoanPage?id=001i000000zLAm1&productApiN…We would like to create a URL would not redirect to particular account.I used this inline code in the redirect url section:/apex/ConvertOpportunityToLoanPage?id={{$Model.SelectedLoan.data.0.Id}}&productApiName=Product__c&productTypeApiName=Product_Type__c&productLineApiName=Product_Line__c&relationshipAPIName=id&convertedProductName={{$Model.SelectedLoan.data.0.Name}}&businessName={{$Model.SelectedLoan.data.0.Id15}}We are getting an error message as “URL No Longer Exists”. Any thoughts?Thanks in advance.
I have a page with two tabs and table under each tab. Both the tables use same model with some filterable off conditions. I am trying to activate these conditions on selection of these tab using tab actions but for some reason it is not working. When I select a tab it takes few seconds but does not return any records.Thanks,Shalabh
Saving Time custom field in skuid has issue, console error ‘Visualforce Remoting Exception: Illegal assignment from String to Time object…’. Skuid does not handle properly on save, Ui acts as save success but actually record is not created/saved.We are in skuid 11.0.3.Any solution?
Hi there!We have a custom field renderer on a picklist field that will highlight the row’s background in a nice green color when the picklist value says “Completed”However, when that custom field renderer is on, the picklist values available to the user include all picklist values, regardless of record type. So we are getting some wonky data with users selecting picklist values that they shouldn’t be able to select for that record type.Is there an easy fix? Or even a kind of easy fix? Here’s the custom field renderer:// requiredQuantityRenderer.jsvar $ = skuid.$;var field = arguments[0];var value = arguments[1];var row = field.row;if (value === ‘Completed’) { field.item.element.addClass(“highlight-row”);}skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field, value);
Just built pop-up that would be useful in multiple places. Other than just copying xml is there a way to clone it? or have different interactions/buttons access it?Thanks
Hello! I am having an issue where a User lookup field in a field editor renders fine on page load, then when clicking to edit the ID replaces the name. When a new user is searched and selected, the field returns blank, but upon page refresh everything saves correctly.
I am making a wizard page to guide admins through directions to complete a task. I want to enter screenshots to help them. What is the most simply way to do that?
I am using following block of code to mark rows in model for deletion. if(delQliPri.data.length &gt;0){<br>&nbsp; &nbsp; $.each(delQliPri.data,function(i,row){<br>&nbsp; &nbsp; console.log('RowID------&gt;',row.Id);<br>&nbsp; &nbsp; delQliPri.deleteRow({Id:row.Id});<br>&nbsp; &nbsp;&nbsp;});<br>} but it is doing nothing. Don’t understand where it is wrong. Help me in understanding it. I tried to implement it from this Skuid document
We’d like to be able to run the whole approval process through Skuid pages for a smooth UX.I have built something in a sandbox for our account approval process. Currently if I click on Approve / Reject button I am taken through to a Salesforce classic page, which looks pretty ugly. At this point I can then approve or reject a record. Is there any way around this, so I can put the pages in Skuid, I am open to ideas.I’ve heard invocable apex mentioned a few times. Is there any standardised code I can borrow from someone to get this up and running please?
Hi,Pretty new to Skuid and I am trying to add some spacing between buttons in a button set. I imagine I have to do this with some CSS? Not sure. Any help will be the most appreciated.Thank you!
This error occurred on the Skuid page in Lightning Experience, we haven’t encountered this error before. The Skuid Version we are using now is 11.1.1. We are still no clue which is the root cause of this error. We are wondering if there is any workaround to get rid of this error message. Any help is appreciated. Thank you very much.
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.