Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
I created a model based on the Account object, and used a subquery pointing to the Events object. I limited events to those set for this quarter, and want to return Accounts not in that subquery. I am getting no results, where a standard Salesforce report pulls up 58 records without issue.I read this may have something to do with 15 character vs 18 character ids, but I have tried using a “safe id” version of my Account Id to match up with and neither it nor the standard Id field return any results.
I am now trying to create a link on multiple images on a page. I set the behavior as a “Link” . My interaction is a “Click”, then I toggle a sliding panel. In the sliding panel is a “Page Include”, The first picture has a query string “Id={{{$Model.Why_Work_List.data.0.Entity_01__r.Id}}}”. The second picture has a query string “Id={{{$Model.Why_Work_List.data.0.Entity_02__r.Id}}}”. The picture picture has a query string “Id={{{$Model.Why_Work_List.data.0.Entity_03__r.Id}}}”.When I click on any one of the three images, the correct sliding panel opens. However, te same sliding panel data is opened regardless of the picture clicked. I would think by passing Entity_01 or Entity_02 or Entity_03 it would open the related sliding panel.https://drive.google.com/file/d/0B409lhd9sYDcYnJFOTJjOURvdjg/view
Just noticed this! What else did I miss?
I am trying to make this work:http://help.skuid.com/m/supercharge-your-ui/l/601103-using-the-custom-component-for-custom-page-beha… Here is what I think it should look like: skuid.componentType.register(‘mapAddress’,function(element){ var btn = jQuery(‘Map Address’).button() .on(‘click’,function(){ // instantiate a model using the model named “Contacts” var m = skuid.model.getModel(‘View_Location’); // get the first row (or record) from our model var row = m.getFirstRow(); // assemble the mailing address fields var street = m.getFieldValue(row,‘{{$Model.View_Location.data.0.Street_Address__c}}’); var city = m.getFieldValue(row,‘{{$Model.View_Location.data.0.Zip_Postal__r.City__r.City__c}}’); var state = m.getFieldValue(row,‘{{$Model.View_Location.data.0.Zip_Postal__rState__r.State_Name__c}}’); var zip = m.getFieldValue(row,‘{{$Model.View_Location.data.0.Zip_Postal__r.Zip_Codes__c}}’); var address = street + ’ ’ + city + ', ’ + state + ’ ’ + zip; window.open(‘http://maps.google.com/?q=’
We are trying to ensure that a user doesn’t mis-key an email address by asking for it twice. Perfect scenario would result in the first field being masked upon tabbing out of the field (****) so it could not be copied and pasted into the second field. It would then render an image that would default to an X if it was incorrect and then display a Check Mark Image when it was matched. Best Practice:Should this be done by using the standard field and UI-Only field, or two fields on the Contact record. Is there a way that we can perform the check while the data is being entered, before it is saved into the record. I see a field Renderer has option as password. I do not see this on all fields, is there a reason why. Can you tell me a little more on this topic. Difference between using Image Component and Brand new to skuid definitely a click not code girl :) Dont feel like you need to answer all questions. Trying to put some of the pieces together to further learn. Any point
Hey everyone. I am curious about how i can prevent fields on a page layout disappear when I query a model on load. So currently I use a URL parameter to pass in my AccountID and then query related records based on that. The only problem is that the fields disappear on the skuid page if there is no saved value for it. Now I can select “Create default row if Model has none”, and the fields will appear, but that saves any current data as a new record. Any thoughts around this?Thanks, Richard
Hi,can I change card background color base on value field of the single record?Thank you in advance
Has anyone seen a scenario where one user gets an Operation Too Large error for one account, but when another user goes to that account it works just fine? It is definitely my Skuid page issue, but I’ve only seen this based on the specific record, not a specific user. The user that is getting the error can access other accounts without an issue.
What is the correct merge syntax to enter into a drilldown chart’s title so it displays the series category name that was clicked? I’ve tried $Model.ModelName.data.0.fieldName, which will return the name from the first row, but I need a count function to update the row number based on the series that is selected. Is that possible? or is there another way?
Hi,How to set a value of a certain field once the model has loaded?
I have a search field looking at three objects, Account and two custom objects. When searching on one of the custom objects and the Account object, results appear correctly under the search field. Results coming from the second custom object are showing the record ID rather than the name. Both custom objects look up to the Account object. I would like to see the account name from the Account object when returning a match to the second custom object, just as it does with the first custom object. Clicking View next to the object name field shows a list of the results with the name displayed. Any ideas?
I need to update my sandbox to version 8.15.15: “Rockaway Point Release - Iteration 13.1”, but there’s no link available in https://skuid.secure.force.com/skuidreleases
https://success.salesforce.com/ideaView?id=0873A000000CLnIQAW Hate this about Flow.
There seems to be a change in handling of javascript snippet since we upgraded to 9.5.2 Line 10 of screen shot below used to work fine prior to the upgrade but have to rewrite all snippet with the line 11 syntax now! What is the correct skuid supported method of doing this?
I’m looking to custom render a lookup field so that I can add an option before all choices if there is no match. Using input.autocomplete({source:…, select:…}) and source function seems to work partially. Can you provide a simple example to show like an array of static values in the custom renderer for a lookup field? Simple value and label pair do not seem to display the dropdown values properly. Thanks!
I am trying to clone a page and then change the master page that is associated with it. I see where it is listed on the Edit Page Properties, but can not see how to change it. What am I missing?
TI have an Account Detail page where I have my related opportunities linked to. I also have an Activities section that is linked to both the Account ID and the related Opportunity ID. This is where I’m completely stumped - IF my account does not have an opportunity OR my Opportunities that are linked do not have an activity, then the Skuid model pulls in ALL activities in my org. So either I get a load error or I’m pulling in activities that are not related to the account/opportunity. I have no idea why this is happening, since I have the What ID successfully linked to the Account ID for account activities and that is working like a charm. But, when I do a similar link to the Related Opportunity ID, it breaks. I have used the conditions What ID IS IN the Account ID and the What ID IS IN the Opportunity ID. Has anybody seen this happen or have an answer?
I’m on 9.5.3 and am getting the following error: Here is the code to reproduce: <skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" useviewportmeta="true" showheader="true"> <models> <model id="Contact" limit="20" query="true" createrowifnonefound="false" datasource="salesforce" type="" sobject="Contact"> <fields> <field id="CreatedDate"/> </fields> <conditions> <condition type="fieldvalue" value="NOW" enclosevalueinquotes="false" field="CreatedDate" operator="lt"/> </conditions> <actions/> </model> </models> <components/> <resources> <labels/> <javascript/> <css/> </resources> <styles> <styleitem type="background" bgtype="none"/> </styles> </skuidpage>
I want to replicate a SF chart in Skuid. Simply a column chart with the sum of opportunities split by product. Data axes = Amount; category axes = Product Name. How do I get product name as a category field?
I have a formula that’s not calculating on the entire model when used in a UI only field but calculates values correctly when using skuid.formula.getFunction('customFunctionName')(parameter1,parameter2);
I’ve read through this post and the lightning guide here: https://docs.skuid.com/latest/en/skuid/deploy/salesforce/using-skuid-lightning.htmlWhat about page assignments? We have a customer with 10 different detail pages with page assignments showing 10 different Skuid pages. It looks like the custom lightning component you have to specify the Skuid page. How would we replicate the functionality of the VF component? i.e.: <br /> Note: This conversation was created from a reply on: Tips for deploying pages in Lightning?.
I’m converting the following onclick javascript to a Skuid javascript snippet, and am getting an “Uncaught TypeError” at execute. Any ideas on how to resolve this?Salesforce Button: {!REQUIRESCRIPT("/soap/ajax/30.0/connection.js")} {!REQUIRESCRIPT("/soap/ajax/30.0/apex.js")}<br>var originalValue = this.value;<br>this.value = "Processing...";<br>var request = new Object();<br>request.Action = "view";<br>request.AttachmentId = "{!ATT_EXP__Attachment__c.Id }";<br>request.UserAgent = navigator.userAgent;<br>debugger;<br>var attachmentURL = sforce.apex.execute("ATT_EXP.AttachmentsController","GetViewSignature",{JSONrequest:JSON.stringify(request)});<br>this.value = originalValue;<br>window.open(attachmentURL); Skuid Snippet: var params = arguments[0], $ = skuid.$; models = skuid.model.map(); var attachmentId = models.Attachment_view.getFirstRow().Id; var originalValue = this.value; this.value = "Processing..."; var request = new
Is it possible to restrict the button set width to less than 100% of the page width? I have one button named “Detailed Description” which I’d like to take up less white space on the page! The “Detailed Description” button is a pop up showing the full contents of the “Description” field. The content of this field can be fairly long, so we chose to use a pop up to save on page space! If there are any ideas on what else we could use, would be greatly appreciated!
Whenever I try to preview page I ma building it does not show the fields i have added to the page editor…!! i have double checked all the fields are included in the model, the field editor is linked to the correct model , still its not working…!! Please help… Even when i deploy this page as a button on leads using visualforce plce holder nothing comes up. What can be the solution?
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.