Upcoming Event - 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 have a javascript function that creates a new row in an another model within a popup. In order to correctly create this record I need to access the current context row for the popup within my javascript code. I have searched online for this but could not find a solution. I would appreciate your help on this.
The text in the subnav items is always set to hover for all subnav items whenever on nav item leading to subnav or on any subnav item.
I can’t seem to get the background on drop down buttons to update. Only on .nx-actioneslect.
So if I use a file upload button and set it to Chatter, I can access it through the Content object options in a model and display it in a filtered table on a record detail page (discussed in the link blow). I don’t fully understand Salesforce Content and how Skuid is interacting with it. When I go to the “Content” tab in Salesforce, the documents I have uploaded don’t display. When I go to the “Files” tab in salesforce, they do display. When I pull them into the model, however, I am using a “Content” object, so I assume that these files are also being deposited into content. Why do the not display on the Content tab of salesforce? Can someone help me understand what the difference between “Content” and “file” is. I know they are different from “attachements” and “Documents” and “Notes”, but I don’t understand the difference between Files and Content and how Skuid interacts with them using the upload button. Thanks! https://community.skuid.com/t/im-having-some-trouble-displaying-content
Pretty basic but can someone point me in the direction of the way I would change the text displayed on the file upload button. Can if be done with CSS? I want it to say " Upload: Click Here or Drag and Drop". Thanks
Hi I have a picklist of 30 values and selecting any of them would potentially display 1-8 lookups fields. I’m setting up an action on the model that fires when the picklist changes. In the custom snippet, I want to activate a condition on the content types model which contains which of the 8 lookups would be active for the picklist choice. The lookup fields are initially hidden on the UI. How do I render them on the UI when conditions are met? I tried Model.getField(“Company__c”).render(); It’s not working. What should I use for this to work?
Hi all,I’m attempting to use Banzai’s new REST connection functionality to connect to another Salesforce org. Is there a way to specify a URL parameter for an OAuth provider? Whenever I load the edit page that I’m working with, and the OAuth process begins for my model, the popup that comes up uses an incorrect redirect_uri parameter. Can this be overridden anywhere?Thank you!
Is it possible to add an existing VF page to a tab in Skuid
I’ve tried looking around for a solution for this problem, but to no avail. The problem that I’m having is I have a custom field that contains an error message along with that message I have an HTML link to the object that’s causing that error. I’ve tried using the merge syntax, but the link is still being escaped. The template looks like: {{#Error_Message__c}{{{Error_Message__c}}}{{/Error_Message__c}} Any hints that could point me in the right direction?Thanks!
So I’m transitioning our org over to using Page Assignments to provide different Home Page’s per Profiles. I’ve already created individual VF pages for each home page, the custom components linking to each VF page, and the home page layouts for each as well. But I’m noticing that using Page Layout Assignment isn’t actually overriding the pages. I have created brand new sets entirely separate from what we currently have so that I have no issues moving over to using <skuid:page objectType=“HomePage” actionType=“Tab”/> within my VF Pages. Also, have made sure to update the security settings on the VF pages so I wouldn’t run into that issue. Any ideas as to why they aren’t being overridden? I have gotten them to work in the past just feel like i’m overlooking some small detail
From a Skuid page, I have a Visualforce page redirect. What kind of tags can I add to the VF page back button so that end-users lands back on where they were on the Skuid page?Thanks in advance!
I have a skuid page where on save, I call apex code. So once the page data is filled and saved and if there is any exception on save,then neither can I select any value in the lookup fields in the same page nor can I re-render components.
I have an action with a popup. I want to see more of the popup to view more field sand try to expand the the top or bottom the popup by dragging the edges, the screen disappears and reappears at the bottom of the screen.
I have several Ui-Only fields that use Model_Lookup to return a number. The field being returned is a number, and the Ui-Only field type is set to number. However, in a table, there is no check box to enable order by for this field. Is this the intended design? It would be very helpful to be able to order by these fields.
Hi AllWe have a requirement where we have multiple filters on a table. out of all the table filters, we want two filters to be required and page throws an error if user has not selected value in these two filters. Problem is that these filters are multi select type and as soon as user clicks on apply button (in table filter), results are returned irrespective of whether user has selected any value or not.I couldn’t find an option in skuid and snippets to put a check on apply button in table filter. Is there any work around to achieve this?Thanks.
I have the condition: It seems to be comparing: a0Ej0000005Vr2rEAC to a0Ej0000005Vr2r If I turn off the condition then the number shown are 18 digits long and are the same Why the difference in number lengths? Is this why I get know matches?
I have a chart that uses an Aggregate model because otherwise I hit the heap size data limit. And I’ve got a fake/empty table that I’m using to filter the chart. But I’d like to actually show data in the table. Is that possible? I’m thinking I could do a table without any filters and the model has a condition of ID in the ID field of the aggregate model, and some actions so that when the agg model refreshes the basic model refreshes, but will that condition work?Any other ideas?
I have users who will be routinely attaching a report that is in .html format to a record.I can easily build a model to get the file id from the Attachment sObject… but how can I embed/display the html file on screen within skuid? If I visit ‘/servlet/servlet.FileDownload?file={{{Id}}}’ I just get a download of the file, and then I have to open it to view in a browser. I’d like to be able to display the html within the file on the page.
Question 1. I am unable to add the button in application . Ques 2. I have added the button in 'loan dashboard but it is not working . code-var applicationModel = skuid.model.getModel(‘Application’);var applicationRow = applicationModel.data[0];var appId =applicationRow.genesis__Funding_in_Tranches__c ; var agree = confirm(“Are you sure ?”);window.alert("id : "+ appId);if (agree){var retVal = sforce.apex.execute(“PricingController”,“borrowerAccepted”,{id:appId}); window.location.reload();}
If I have a function in a snippet that is called on page load, how do I then refer back to that function from an in-line snippet triggered, for example, by the action framework?Forgive me if I’m being horribly daft.Cheers!Louis
This is an extension of a great post here: https://community.skuid.com/t/how-do-i-render-custom-picklist-valuesI’m trying to take the selected values from a multipicklist field and render them as a picklist.Here’s my custom renderer: var field = arguments[0],&nbsp; &nbsp; value = skuid.utils.decodeHTML(arguments[1]),<br> $ = skuid.$;<br>console.log('Rendering Session 1');<br>var intakeModel = skuid.$M('BabyMeIntake'),<br>&nbsp; &nbsp; intakeRow = intakeModel.getFirstRow(),<br>&nbsp; &nbsp; interests = intakeModel.getFieldValue(intakeRow,'Learning_Interests__c');<br>if (interests) {<br>&nbsp; &nbsp; var interestsArray = interests.split(';');<br>&nbsp; &nbsp; var picklistEntries = field.metadata.picklistEntries;<br>&nbsp; &nbsp; picklistEntries.length = 0;<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; $.each(interestsArray,function(i,str){<br>&nbsp; &a
I have Multi-Pick list that when its values are checked it will Activate a condition in another model based upon what was selected. This works great except when the user clicks “UnCheck All” and the condition appears to get set to “None” and thus my models return no data. Additionally, I would also like to be able to default the Multi Picklist to be “All Values” rather than only one.
I am displaying a chart which has region like New York, Boston, Atlanta etc on it ‘X’ axis and their corresponding revenue on the ‘Y’ axis. Now on click of a particular region i want to open up a popup and only show data details specific to that region. When i set the name of the region in the context of the pop-up no data is displayed. The context is mapping the value of the region with the id. How can i map it with any other field?
Is there a way to show the value of a bar without having to hover? I saw an earlier example with %s on pie charts, wanted to know if values on bar/columns was also something that was possible.
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.