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 am populating a lookup field via javascript on page load. The field has a display template in Skuid, such that it should show an alternative field’s value (from the target/looked-up record), not the record’s “Name” field. E.g., instead of showing the autogenerated standard “record number/name” field, it should show a formula field that is more useful for users. Great stuff.This displays fine for records that have already been created. It also works fine if you manually lookup a record. However, when creating a new record, when I populate that field with the ID of the looked-up record via javascript on page load, it displays only the ID of the looked-up record in my lookup field, not what should display according to the display template.How do I make my code populate the lookup but also display according to the template?
I think I may have hit the limit in XML characters that skuid is capable of storing in SF.I say this because i had to delete some txt from the xml just now in order to add the closing > to the xml
When using a right or left tabset, the default behavior is to highlight the other tab instead of the tab that the user is looking at. Is there a way to reverse that behavior, so that the current tab will be highlighted instead of being the same color as the rest of the page?
Hello!Is there some javascript code I can use at the end of a mass action snippet to deselect selected rows on a table? This is so that the process can be repeated using a different mass action without having to deselect the records in between.Thanks for the help!
As part of an ongoing effort to add some events to SKUID forms I had the idea that I could trap the click event using jqueryso i put this in “inline” javascriptskuid.$( “input” ).click(function() { alert( “Handler for .click() called.” );});but this doesn’t give any message when I click on inputsI must be missing somethingThanks
I have a page that has a custom function that saves then updates a model. However, the updateData() method doesn’t seem to be working. Everything seems to save fine, but the field editor on the page never changes, though when I refresh the page I can see that the changes occurred. I’m not getting errors in the console, either. Here’s the javascript that is running:var params = arguments[0], chosenRow = params.item.row, classesModel = params.model, $ = skuid.$, teacherModel = skuid.model.getModel(‘Teacher’); classModel = skuid.model.getModel(‘Class’);var teacherRow = teacherModel.getFirstRow(); classesModel.updateRow(chosenRow,‘Teacher__c’,teacherModel.getFieldValue(teacherRow,‘Id’)); classesModel.save({callback: function(result){ if (result.totalsuccess) { classModel.updateData(); // THIS IS WHAT DOESN’T SEEM TO BE WORKING } else {console.log(result.insertResults[0]); } }});
I’m trying to move several sections of our pages into separate pages that are then referenced via page-includes. For example, I’ve created a tasks page that accepts parameters for whoid, whatid and ownerid and I can now put it on any detail page and have it show the relevant tasks.What I’d like to do is hide certain columns on certain pages. Mainly, I want to have the tasks page on the homepage and hide the ownerid column - I’m passing a parameter to the page-include so that it’s only showing their own tasks, so showing them the ownerid column seems unnecessary. Is there a way to hide columns?
Hi,I have a requirement to display the new associated description in a separate text field (this is field is readonly) when the value of a picklist changes. The screen is not ready to save yet. Is there a way to change the value on the screen of another field? I have tried to use something like the following in the snippet that renders the picklist: skuid.ui.fieldRenderers.TEXTAREA[descriptionField.mode](descriptionField,‘Some New Value’);but cannot get the right object for other field descriptionField.Thanks.
I’m building a New Lead page with several Table and Field Editor components. In preview, clicking the Add Row button on any of the tables duplicates all fields in all the Field Editor components on the page. What am I doing wrong?
Hello all,I have a question about the table component.Is it possible to render a field in a table row that displays the index of the current row? We tried doing this by creating a custom field on our SF object. I then wrote a custom field renderer to incrementally assign IDs to this field on page load and as the user enters new rows. But I’m seeing strange behavior, and it feels like I’m going about this the wrong way.All I want to do is display the index of the row in the data object for the model being displayed by the table component. Is there an easy way to do this?Thanks!
seems stupid, but none of the online documentation tells how to open iti suppose the videos do, but i can’t play a video right now. It should be in the written documentation as well…ok, i found the documentationbut when i do “new page”, I don’t get an option of “type”, just page name.do i need to update my skuid ?or is there some config setting i need to change?i notice on the app exchange skuid is at 4.4my skuid seems to be 3.5however, there seems to be no direct way to upgrade… do i have to reinstall ?having a stupid day
I am having difficulty setting related fields programatically within a popup.Use Case:We have a ‘Relationship’ object which needs to support a reference to one of three other types, specifically ‘Team Member’, ‘Organisation’, or ‘Person’. Given my understanding is that custom objects do not support this type of dynamic/polymorphic relationship, our design approach is to have a dummy field called ‘Search Text’, which is rendered in a Skuid field editor using a dynamic render snippet. As various events are triggered on the dummy field, the appropriate Id values for related records are set on the underlying row. For example: if an organisation is selected in the ‘Search Text’ field, the dynamic rendering code will set like so: params.row.cloupra__To_Organisation__c = ui.item.id; params.row.cloupra__To_Organisation__r = {Id: ui.item.id, Name: ui.item.name}; The actual save is triggered by the "Save/Cancel" button on the popup that contains the field editor. I have intercepted this call,
I am yet to start using Skuid, i am interested as i hate the current look of salesforce however i am looking for a solution to a couple of specific user cases also and was wondering if Skuid will help. So without further ado:1 - Shopping cart of opportunities.When an opportunity is created we allow the users to add products to it from a price book. At the moment i have hacked together a decent enough page that has a table at the top (shopping cart) and all the items listed below with an “Add” button. Upon clicking on the “Add” button that product is added to the shopping cart, and it’s fields can be edited as needed. What’s key here is that the product has to remains available to be added multiple times.Is this do-able in Skuid relatively easily? The implementation i currently have is done with various bits of custom classes and jQuery, but it’s rather hacky and i would very much like something more solid.2 - Drag Sorting of TablesRelated to the above, something i have looked at adding
I have a form that has a table with row action buttons. If you click on the button for a row you get a set of child records displayed… the problem is, if you click on the program name by accident it takes you to the detail record for that program (and there is no detail record form for the program… programs are only displayed in the table) is there a way to disable the link on the program names (which appears because they are a “name” field) ?
A textarea (long text field) input in Skuid looks different in regular web-browsers and in iPad/mobile. In the regular box it is resizable but not in the mobile. This seems to be a JQM issue since the TextInput on their web (http://demos.jquerymobile.com/1.4.2/textinput/) behaves exactly the same. Is there a way to enable the resize in Skuid on mobile devices? Is there an easy way to change start settings like height etc on a global or per field basis (CSS resource and Field renderer i guess).A feature request for Skuid would be to expose many more of the settings possible in moible composer, either as properties or by adding classes in a textbox for each field. I had a problem where the checkbox. In regular Skuid iit s language independent but in mobile Skuid it’s all of a sudden a flipswitch with On/Off. This looks a bit strange on a localized Swedish page so after some poking around in the CSS i found this CSS to translate: input[type=checkbox]:before { content: ‘NEJ’;}input[ty
When using a SKUID mobile app in an iPad sometimes text input fields freezes and it’s not possible to enter text even though the cursor is in the text field and the on-screen keyboard is displayed. By clicking on another text field and then back to the first field it’s again possible to enter text. One way of making thie problem appear is to drag on the screen outside the field. The cursor is then still in the field when dragging ends but it’s not possible to enter text. Even if clicking in the field again no entry is possible, you must select antoher field first and then back. This applies to Decks in edit mode.Anothjer way to make the input freeze is in Read with inline editing mode. When double-tapping on a field when the keyboard is visible on the ipad the field changes to edit mode but it’s not possible to enter text. To be able to enter text i must first remove the on-screen keyboard, then single-click in the field and when the keyboard appears again it’s possible to input text a
I have a squid page (account details page) that I would like to use within a Sales/Service console…I followed the instructions within the Service Cloud tutorial…its loading within the console…but I have a few items not working: The Tab reads at the top of the console reads External Page instead of the Account Name… I have custom hyper links (created using a Template component) within my skuid page (see below)…when I click on the link…the SF record is opened in a new window outside of the console…I would like for the record to open within the console… {{{relatedParentrN}}} Thank you any advice…
I’ve been moving towards creating separate small pages that are then used on multiple pages - for example, I have a “task” page that I then include on any other page (account, case, etc) and the outer page passes a parameter to filter down to tasks with that WhatId.Overall, this seems like a cleaner approach (and much easier to maintain) compared to recreating the models, tables, etc on each page. But the problem I’m running into is now I don’t know how to tell which pages are referencing my “task” page - I need to make some changes to the parameters it’s expecting, but I’m not sure what other pages might break.Is there a way for me to see which pages are dependent on one another?
How do I integrate Data.com “Clean” Button into a Skuid page? It doesn’t appear like the rest of the buttons that are available automatically in the Page Title component.
How do I initialize a custom component after a page panel in Skuid mobile has been loaded? I have the following code in a JS component in regular SKUID var element = arguments[0],<br> $ = skuid.$;<br>element.css({width:'400px',height:'200px'});<br>$(document).ready(function() {<br> element.jSignature();<br> element.jSignature("reset");<br>}) If I use the same code in mobile it doesn’t work. I guess this is because the DOM is loaded differently in jQuery Mobile. How do I get the init code to run when a certain page panel is loaded? I guess something with pageInit but haven’t been able to find exactly how.
I have created a skuid page for my account detail form…is it possible to create a button on this account details skuid page form…that allows for a user to switch between my Skuid Account Details page and a Standard SF Accounts Details form…? purpose…is to show user how skuid drastically improves the ui
I have a lookup reference field on Account that returns the looked up values from a custom object (Stage__c) in a picklist (which makes sense, as there are only 20 or so records in the looked up object). But I want the picklist entries to be in a sort order based on another field on Stage__c called Sort_Order__c. I can’t find how to do that. Is there a magic way that I’m missing?
I am looking for more of a bootstrap look and feel. I would love to //netdna.bootstrapcdn.com/bootswatch/3.1.1/cerulean/bootstrap.min.css from http://www.bootstrapcdn.com/#bootswatch_tab but I am not getting it to work. Any thoughts or suggestion would be appreciated? I already followed instructions within the tutorials on custom css but I am looking for more. Let me know if more detail will help you answer.At end of the day… I love Skuid versus Salesforce UI but I want a tighter cleaner interface.
I have a tabset in which I lazy load all but the first tab, which is nice for performance. But I see through the console that the model data for those deferred tabs gets returned on the initial page load. Is there a way to only run a tab’s model when the tab is displayed? My theory is that this should improve the initial page load even further.Thx!
I have a calendar page that has a custom popup (when you click on the title of an event) that has an included page. Everything works fine when logged in as a SF standard user. When I login as a portal user and load the include page by itself it works fine. However when I try to use the calendar page and load the popup, I just get “Loading…” forever. The popup page does have some javascript that executes upon loading as a popup, so my guess is that has something to do with it, but I don’t know why it wouldn’t work in the portal. Here’s the javascript code: // this code gets all enrollment records for the class // then creates new workshop attendance records in the model for this workshop if there aren't already such records for each enrollment // it should execute upon loading of the page/popup (function(skuid){ var $ = skuid.$; $(function(){ $(document.body).one('pageload',function(){ var models = skuid.model; var workshopRow = models.getModel('WorkshopDetail').getFirstRow(); if(worksh
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.