Nintex Automation K2: Back to basics
Connect with peers and experts to ask questions, share insights, and find solutions for Nintex products.
Recently active
Skuid Team, I just installed Rockaway in my development organization and cannot open a drawer that was working prior to Rockaway. I am seeing an error in the console after clicking the row action for the drawer. The drawer queries a model that is based on a REST connection (http://api.openweathermap.org/data/2.5). I am setting the City on my model condition and expect to get data back on the weather in that city. I added a drawer to the same table that queries a Salesforce object and it works. It seems that it is isolated to the fact that I am trying to query a REST connection model. Let me know what you need to troubleshoot this. Thanks, Bill
Hi there,Rockaway is putting a checkbox around all our checkboxes at zoom levels less than 100% (see screenshot).Any idea why?Thanks,Mansour
Who doesn’t like an Uncaught TypeError after installing a new package?
Greetings,I’m having a problem with a model not querying the correct record as defined in the model conditions. The condition is that the Id is equal to the value on another model. The value on the other model is selected by the user, and is a reference picklist. Regardless of the value on the other model, the same record is always returned by the query. I checked in the JavaScript console that there is only a single record in the other model.I was just curious if anyone else has had this problem.Thanks.
Hi there, We upgraded to Rockaway today and our progress indicator custom component stopped respecting our metadata overridden picklist value (see screenshot). Any idea as to why this happened or how to fix it? Thanks, Mansour
Trying to include “Salesforce for Outlook” url in skuid template using iframe within templateskuid not recognizing the sfdc standard urlPlease suggest
Is there a tutorial which will guide us on how to create a Skuid page into a Lighting component. 2) Every time I click “Build Page in Lightning” i am always getting pointed to “URL No Longer Exists” Note: We are currently building Lightning components for Napili, we want to use Skuid pages to replace the lightning component in Napili.
I was trying to have a custom renderer script on a PICKLIST component in a table.What I want to do is, populate the picklist values as radio buttons and highlight the table row when there is a non blank value.I’ve tried below custom renderer and which rederes the PICKLIST as radio buttons.Could someone tell me how could I have a change function with the field.options.type = ‘RADIO_BUTTONS’; option enabled?ORIs there any other way to highlight the rows of a table based on the selected picklist values?var $ = skuid.$;var field = arguments[0],value = arguments[1],model = field.model,row = field.row;field.options.type = ‘RADIO_BUTTONS’;field.mode = field.mode === ‘readonly’ ? ‘read’ : field.mode;skuid.ui.fieldRenderers.PICKLISTfield.mode;switch( field.mode ) { case ‘edit’: skuid.ui.fieldRenderers[field.metadata.displaytype].edit( field, value ); if(value) { field.item.element.addClass(“LeadTab_highlighted-row”); } break;}Thanks“RADIO_BUTTON”
Hello, we currently using informatica real time guides to import data into SF and I’m wondering if we can use Skuid instead. The current import process is:1. User enters a booking ID which is inserted to remote database2. Related passenger records are then inserted into SF, then replicated back to remote database3. Related booking record is then inserted into SF, then replicated back to remote databaseIn broad terms, could the above be built out with Skuid? Is anyone familiar with a similar solution? Many thanks…
Are there any simple directions on how to upload an attachment to a record on a site? I used this:http://help.skuid.com/m/components/l/102565-use-the-file-component-to-attach-files-to-a-recordand it works fine in preview Then the issue starts when it try to upload on my site. When I click on “Upload” nothing happens. Are there certain objects and fields I need to make public? I saw this:http://help.skuid.com/m/page-assignments-and-overrides/l/201793-using-the-skuid-page-visualforce-com… Is there a cook book recipe to doing this? Step 1, step 2 etc?
I have a tab set and if I add ‘&’ to the tab label; skuid throws an error - Invalid XML…
Does anyone know if/how we can pull object Metadata into a Skuid Page?For example, what Action Overrides are in place on objects?And Custom Buttons that refer to Visualforce Pages?i.e. whether or not the Contact object has a Tab button, and if so, what Skuid Page it is using?Essentially, I want to create a custom Skuid Page with all of this Metadata, so that I can quickly see all the custom button overrides and page assignments used in a Org.- similar to what Workbench provides access to, but Skuidified! 🙂(Standard Salesforce Reporting on Skuid Pages doesn’t give me all I need - because, as one example, it’ll only show Skuid Page Assignments, and not all Visualforce Pages/Actions that refer back to Skuid Pages).
I can’t think of a good way to auto-number each new row added to a table within my page. I’d like my “Line Item” field to auto-populate with a new number for each row created when the “Inline Record Creation” button is clicked. Right now I have an action set to update the “Line Item” field with the {{Id}} of the row when a new row is created. This works, but it starts at 2 and then jumps to 5 on the next row and so on. Can anyone think of a way to make it start at 1 and then 2,3,…? (The order doesn’t really matter) Thanks for the help!
I have a pageinclude that pull in a skuid page that uses a Master page. The “showheader=false” on the Parent Query String doesn’t appear to hide the child page’s header. Am I correct in assuming that the “showheader=fase” query string will only hide the standard SF header but not the skuid master page header?
Hi,While writing a snippet where I have to query a model with loads of records in it (800+) I felt the urge to use model.sync() instead of model.updateData() because of the load time. As far as I can tell model.sync() is basically the “get more” version of the multiple actions. I know model.sync() is a prototype method and not documented by any means.Although there is a bug in it and I really would like to have it as an official function 🙂Cheers
I’m getting the above error and I can’t figure out at all what’s going on. I have a Skuid page called Inner, which has in it just a template with some text in it. Then I have a Skuid page called Outer, which has only a page include component that includes Inner. If I preview Outer, it renders fine and I see the text coming through from Inner. But what I want is for Outer to appear in a Visualforce page. As soon as I embed Outer in a Visualforce page and view the Visualforce page, I get a console error: “Uncaught TypeError: UserContext.initialize is not a function”. I’ve tried it in two different orgs. Driving me nuts. Anyone seen it before?
This is a continuation of this other thread, but I’m reposting because I’m in a hurry and the other thread was marked ‘Answered’ for some reason.Simplified use case:Everywhere the ui finds a picklist field called Primary_Phone_Type__c, run a custom field renderer snippet called “renderPhoneTypes”Everywhere the ui finds a picklist field called STD__c, run a custom field renderer called “renderSTDs”Etc.I have an inline static resource which includes this code: // Get references to our original picklist field renderers var fieldRenderers = skuid.ui.fieldRenderers;&nbsp;<br>var PICKLIST = fieldRenderers.PICKLIST;<br>// My custom Phone field renderer<br>var checkPicklistRenderer = function(field, value) {<br>//Object as switch statement<br>var globalPickFields = {<br>'Case_Type__c': 'renderCaseTypes',<br>'Primary_Phone_Type__c': 'renderPhoneTypes',<br>'Alternate_Phone_Type__c': 'renderPhoneTypes',<br>'Interaction_Intention__c': 'rend
Anyone ever seen this?
Hi There,I would like to modify the error message thrown by validation rule from salesforce to Skuid page .any good way of doing this ?
I can’t figure out how to customize the data labels of my visualization charts…I am only getting the standard format of (Aggregate Function): (see below) Since this is a pie chart of Age, it looks like the label is really the data point (24 records instead of 1 contact record of Age 24). How can I customize these data labels to make this a little more straight-forward…e.g. Add % of Total Change format to say, "Age : 2 Contacts" Not include aggregate function title (e.g. COUNT/SUM/etc.) I see on the Skuid Banzai page this is possible, as has been done with the World Bank Key Indicators data, so it has to be possible…just curious how to do so? Thanks! Conlan
Is there an example of a table where the selection is a check box and only one line can be selected at a time. If a second box is selected, then the first box is unselected. An enter button would be pressed and the item Id of the checked line would be passed?
Hi,I’m building a skuid page to display cases (we use email-to-cases), and I’m having difficulty displaying emails.When I use “textbody” for an email, it displays the text as a long string and not rich text formatting. When I use HTMLbody, it displays the HTML code. I would either like to display the RTF properly, or display the HTML in the email.I suspect there is a way to do this with running a snippet in the Field Renderer, but I’ve tried multiple ways to do this and I’m not having luck. Please advise.Thanks!
All,Is there any best practices list which could help design complex pages with REST models, with having more than 10 models and conditional renderings , wizards kind of stuff ?
Hi, I have a custom field renderer to populate a picklist, I have gone through this post : https://community.skuid.com/t/field-rendering-twice I am not actually doing any update in field renderer snippet but in other snippet which I am running on a model action. any one has an idea why this is happening ? Here is my field renderer snippet : var field = arguments[0], value = arguments[1], $ = skuid.$; var addressModel = skuid.$M(‘Address’); var addrRows = addressModel.getRows(); console.log('field = ',field); console.log('value = ',value); var picklistEntries = field.metadata.picklistEntries; console.log('addresses ==== ',addrRows); picklistEntries.length = 0; $.each(addrRows, function(){ picklistEntries.push( { value: this.Name+this.Id, label: this.Primary__c ? "Primary Address-"+this.Name : this.Name, defaultValue: this.Primary__c ? true : false, active: true }); //add Name field i.e. Address Line-1 Field Value as pick list ent
Hi,I have checked Development Mode to write some VF stuffand had to see some model data on Console to trouble shoot an issueSaw an error : VM3331:2 Uncaught ReferenceError: skuid is not definedbut when I go remove the Development Mode, then only the skuid api started working on Console.Any idea how can we get this though I have Dev Mode active ?
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.