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’m getting the following error when saving a new Person Account“Account: bad field names on insert/update call: FirstName LastName” I’m filling in First Name and Last Name, but not Account Name. A standard SFDC page will show Account Name in View mode, but First Name and Last Name in Edit mode. First and Last are then concatenated into the Account Name behind the scenes. I have tried filling in the Account Name in addition to First and Last, and also just Account name by itself. No difference in the error message.
I am trying to extend the (wonderful) solution found here: https://community.skuid.com/t/setting-default-values-for-quick-data-entryI want to use a handy little button to give my users a faster way to create an Assignment record from a Project detail page. Projects are the Parent to child Assignments. It would be so easy (using the tutorial above) if I just needed to create the Assignment. Unfortunately, Assignments need to be connected via lookup to a Schedule record. All Assignments have a related Schedule record, and in normal Salesforce/FFPSA life, these two records are created at the same time (or almost nearly at the same time) on a clunky, ugly Visualforce page. What I would like to do is create a Global Action on an Assignment Table that will create both a new Schedule record and a new Assignment record, and then pass the newly created Schedule Name/ID (whatever) into the newly created Assignment’s “Schedule__c” lookup field. And then do some adding of default values and so for
So I have my row(s) highlighted in/on model using a row action to addClass() and that part works great.The next thing is to pull the selected row or rows from any given model so what script do I need to use to get the .list.getSelectedItems()
I have noticed that when entering data into a lookup/reference field, the user has to click on the suggestion which pops up under the field. Here is a quote from one of our users: “Also when entering in information you must always clicking on things and if you do not and try to tab or hit enter so it will move to the next field…it automatically again defaults to blank and thus you have to go back and reenter the information. There should be ‘ease’ when moving from field to field. This inability again is wasting time.”.Just wondering if there is an easy way around this behavior, and/or is this something that will eventually be changed to include “Tabbing” ability without having to click the dropdown.Thanks
I have a JS mass action that works great, I call updateData() inside of a save callback. If I leave the updateData() as is, it works fine. However if I change updateData() into a callback, i get an error that: Uncaught TypeError: object is not a function. here’s my code:var params = arguments[0];var $ = skuid.$;var records = skuid.$.map(arguments[0].list.getSelectedItems(),function(item){ return item.row.Id; }); var EDIHistory = params.model;//notify user of progress$.blockUI({ message:‘Resubmitting’});for (var n in records) { var row = EDIHistory.getRowById(records[n]); EDIHistory.updateRow(row, ‘Manually_Resubmit__c’, ‘true’);} //save the model and wait for success EDIHistory.save({callback:function(result){ if (result.totalsuccess){ // update the data EDIHistory.updateData({callback:function(result){ if (result.totalsuccess){ $.unblockUI(); } }}); } else{ alert(“Something went wrong!”); } }});Is there something w
I like the calendar to open in week view, from 1pm to 11 pm
I’ve created a managed package, I’ve also added our namespace as a picklist item in the Module__c field in the page object. I’ve then used the ‘Package Pages in Module’ button, and packaged up all the pages in the module I want to deploy. It creates the static resource, which appears to contain the right pages. HOWEVER, when I install the package into the new org, I see all the pages EXCEPT the ones I packaged up in the module.I can’t understand why the pages I packaged up aren’t there, but I also can’t understand why the pages I didn’t package up, ARE there!! I’ve tried a couple of times now and can’t get my head around it.I’ve double-checked that I’ve added our namespace into the new org prior to installing the package, and that didn’t make a difference either.Any help is appreciated on this.
i’m trying to populate a row with createRow.I can add values to other fields, but I can’t add a value to theis_True__c field, which is a checkbox skip_day = function (args_obj){ var year = args_obj.year; var month = args_obj.month; var day = args_obj.day; var skip_date = year + ‘-’ + month + ‘-’ + day; var new_row = skip_day_model.createRow({ additionalConditions: [ {field:‘is_Test__c’,value:true} ], doAppend: true });console.log(new_row); skip_day_model.save(); return new_row; }skip_day({year:2017,month:1,day:1});Object {Id: “16”, Id15: “16”} Object {Id: “16”, Id15: “16”}
In the standard Salesforce layouts for Chatter you can turn on “Tags” for various objects and use them to categorize them. Can I do that in Skuid?
I am working on customizing my Skuid pages and one of the services I use with my business is Box. I am having a hard time trying to determine how I include the iframe in the template or custom component. The code that is used on the account page in my SF org is : <apex:page standardController=“Account”> <apex:stylesheet value="{!$Resource.box__BoxFilesCSS}" /> <apex:iframe src="https://www.box.com/widget_sso/salesforce?token=%7B%22server_url%22%3A%22{!URLENCODE($Api.Partner_Server_URL_120)}%22%2C%22session_id%22%3A%22{!URLENCODE($Api.Session_ID)}%22%7D&amp;salesforce_object_typed_id={!$CurrentPage.parameters.Id}&amp;partner_object_type=Account&amp;partner_object_name={!URLENCODE(account.name)}&amp;partner_object_email=&amp;partner_object_id={!$CurrentPage.parameters.Id}&amp;open_new_window=1&amp;partner_user_id={!URLENCODE($User.Id)}&amp;partner_user_name={!URLENCODE($User.FirstName)}%20{!URLENCODE($User.LastName)}&amp;partner_user_em
I have created a custom object for managing user group membership, so that the Case object now has a Owner Group field. I want to display all cases owned by the group(s) that the current user is a member of. How can I create a model that support this?
I have a model with a condition that contains a subcondition - both conditions have names and are marked as filterable off. I’ve added a filter to a table and everything works as expected when changing the filter value on the table itself. Due to the nature of the values in the filter (the text is long and needs more width than the lookup filter accommodates - a cssclass option on individual filters would be nice :)), I’m adding another field on the page (currently using a field editor but have rolled a custom component renderer with the same result described below) that is associated with a different model of the same object type as the filter. I have then hooked a listener on the model for the stand-alone field which takes the value specified and updates the condition by calling setCondition.Upon initial page load, if I establish a value in the stand-alone field, the condition successfully updates to the appropriate value and I see the table filter change to the correct value spec
I’m working on writing some tests… so I am writing a mock that can generate some records of the type I need to testI added an is_Test__c field to the object I’m creating records for, its defaults to “unchecked”When I create the records I pass an additional condition to set the value in the new record to true.After I’ve created the 2 records I try to apply the condition that is_Test__c must be true to the model (which has the condition already… but the condition is set to default to “inactive”) and then return the model from my functionwhat I find is that the 2 new records have been created… and their is_Test__c is set to true… but that all the other records in the model are returned as well… and not just the 2 I wantthis.teacher_specialty_day = skuid.model.getModel(‘Cal_Teacher_Specialty_Day’); this.teacher_specialty_day_one = teacher_specialty_day.createRow( { additionalConditions: [ { field: ‘is_Test__c’, value: true}, { field: ‘Cal_Teacher__c’, val
I have a Skuid page that contains a page include of another skuid page. Everything works as expected if my VF markup is: <apex:page standardController=“PO__c” recordSetVar=“c” extensions=“skuid.Redirects” action=“{!redirect}?actionType=Tab&objecttype=PO__c”> </apex:page> Unfortunately, the included page makes use of a controller extension via remoting and the above markup doesn’t give me visibility to the remote methods. To do so, I use the following markup: <apex:page docType=“html-5.0” readOnly=“true” standardController=“PO__c” recordSetVar=“c” extensions=“MyController”> <skuid:page objectType=“PO__c” actionType=“Tab” /> </apex:page> However, when changing to the above markup, the included page seems to encounter a clickjack issue as instead of the inner page in Skuid, another SFDC page is displayed (this seems to happen when clickjack is encountered normally). I’ve tried using the skuid.Redirects markup and appending “,MyController” to the extension
I have a field that is encrypted in Salesforce but it shows on the Skuid page.
Highlight selected row in a table but CSS does not get applied.In a row action I used the code from Moshe question like this :var item = params.item;var list = item.list;$.each( list.renderedItems, function(){ this.element.removeClass( 'highlighted-row' ); } );item.element.addClass('highlighted-row');console.log(item.element);---------------------------------------------I see element has desired class however my in-line CSS :tr.nx-item.highlighted-row { background-color: lightblue;}the background-color does not render ?? any suggestions
I have a table of parent records, with a row action to populate a child record table, with the children of the selected parent. The snippet for the action looks like this : var params = arguments[0], $ = skuid.$; var model = params.model; var item = params.item; item.element.addClass(‘highlighted-row’); var row = item.row; var Id = row.Id; console.log(Id); var RateModel = skuid.$M(‘TierRate’); var tierGroupCondition = RateModel.getConditionByName(‘TierGroup’); RateModel.setCondition(tierGroupCondition, Id); RateModel.save({callback:function(result){ if(result.totalsuccess){ RateModel.updateData(); } }}); I am using this line “item.element.addClass(‘highlighted-row’);” to highlight the selected row. I would like to return the row back to normal if a different row is selected. so that my table will only have one row selected at a time. Is there a way I can do that programmatically?
I think because of our custom domain and the fact that we are using a portal, our custom Skuid button for a third-party product (DrawlLoop) needs to “get” the instance of Salesforce we are on and pass it via the URL. Is there an easy way to do that? I’m hoping it’s in the Skuid API somewhere so that I don’t have to either a) hardcode it, or b) parse the URL.
Hello -I have the following model structure:OrderOrder Item (Master-Detail Order)Order Ship Periods (Lookup to Order Item)I have built a Skuid page that displays the Order object and contains a table of Order Items. There is a table row action on Order Item that displays a pop-up.When the popup displays, all of the information for the item is accurate and reflects the proper row from the table that was selected.I have placed a table on the pop-up that is intended on displaying the Order Ship Periods, however this table displays zero rows and indicates there is no data.I’ve inspected the models (skuid.model.getmodel(‘OrderShipPeriods’), etc.) and it does contain elements in the data property. if I try to “add new” row to this table, the count of elements in data property increase but still no fields are displayed.Read though the forums and it appears that this should work but am unable to determine what I might be doing incorrectly and can’t find a sample that contains 3 or more layer
This might be best answered in a salesforce community, but I just prefer skuidified people. If we start adding topics to records, and I want to create a good way for our team to search records by a field value and any number of topics that have been assigned to that record, do you think this is possible with a skuidified list view?In other words, could I create a list view showing Opportunities of a certain record type that has a list of topics that have been assigned to it that I could use as search terms?
Is it possible to set the start date for the calendar component on load dynamically to something else then the current date? Can the calendar be updated to certain date from javascript so that it would be possible to create buttons like “3 weeks forward”, “next quarter” etc for quick acces to relevant dates? Is it possible to get week numbers in the calendar component?
I’m trying to use conditional rendering in a new record setting and I can’t bend it to my will.I have an “New Account” page with a NewAccount model that has a lookup field called Source that looks up to a related object called Source which has a field called Source Category.In my field editor, the user selects a value for Source and I want to conditionally display another field editor based on the value of Source__r.Source_Category__c in the NewAccount model. But it just doesn’t seem to do anything.I’m on v4.8, which may be relevant.Thanks!
I have a simple Opportunity Name field on my page, and when the user enters an apostrophe it looks like the picture above. Is there a way to fix that? I am using a custom field renderer that looks like this: var field = arguments[0], value = skuid.utils.decodeHTML(arguments[1]), $ = skuid.$; if(value != null){ field.mode = ‘read’; } skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;
Has anyone been able to add a progress bar to the wizard component? I looked all over this community and did not find anything.Here is an example of what I am trying to accomplish.http://jqueryui.com/progressbar/Thanks!
We typically attach solutions to a case upon closure. The support rep will use the related list box to search for similar solutions or find suggested solutions. We’ve recently upgraded to a plan with Salesforce that allows us to use knowledge articles, which is what I’d like to use going forward.Is there an easy way to display and attach knowledge articles to a case via a table on a skuid page?
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.