Upcoming Event - Nintex Automation K2: Back to basics
Access resources, discussions, and troubleshooting tips to build custom applications and streamline workflows with Skuid NLX, SFX, & EXP.
Recently active
I’d like to use a datepicker to just choose a month and year, so users don’t have to pick a specific date. I found this lovely little jsFiddle: http://jsfiddle.net/bopperben/DBpJe/However, I only want to eliminate the calendar on a specific datepicker. I can’t seem to find a way to do so with the CSS… it’s either “display:none” for all of the calendars or none.Is there any way to accomplish this?
We are starting to use tasks heavily and my users are asking for a Correlation page where they can quickly look at tasks related to homes, tasks related to clients, tasks related to vehicles in one page instead of having to jump from Object detail page to Object detail page. In my mind I could create multiple models with a condition that says if WhatID contains (or more preferably begins with) a03, or 001 etc (the first three letters of the record id = the object). In this way I would be able to show a list of tasks related to a home, client or other custom object. Or I could show all objects and apply filter buttons that quickly filter out the list to just home tasks etc. IS there any way to do this using conditions on a model?
I want to know whether its possible to update a models data on page load using skuid java script.If yes, please give an example
Isn’t the most important issue, but I’d like to display the chat widget while also hiding the header. It would be very convenient to have chat functionality standard inside of my work area. Per this blog (http://nmreddy1.blogspot.com/2013/08/display-chatter-in-visualforce-pages.html), it’s possible to do this on a visualforce page.Tips would be greatly appreciated
Is it possible to embed a V.F.P. into a skuid page?
I’m trying to traverse a lookup field to display that lookup’s Attachments in a table. Is this possible? Here’s a bit more detail: I have object ConsultationMedRec with lookup to object MedRec. I have a ConsultationMedRec table. I would like to display MedRec Attachments within the ConsultationMedRec table. It looks like I can’t “trick” the XML to query the child of a lookup, so I’m wondering if this is possible using a custom renderer. Thanks for the help!
So we can see the css value for the field editor label and item. Problem is that the label is 40% and the item is 60%, so for a checkbox that is sort of backwards. We want to change the label to like 70% and the item to 30% so the label does not wrap. So to add a new CSS resource to reference on the field, what would the css be?Thanks in advance.
I have two models, Feedback and FeedbackSignature. Both are set up to pull one record, load on pageload, and create row if none found.FeedbackSignature has a lookup reference to Feedback, and it is populating correctly with the skuid temp id on pageload.However, components on the FeedbackSignature model are giving an “Invalid Reference Id: Feedback” error (even though I haven’t attempted to save anything).Once I’ve saved Feedback, I no longer get the error.Why this error?Ideally, I’d like to be able to save FeedbackSignature before saving Feedback, but that might be asking too much…
This is likely a very quick answer, but our Billing & Address information isn’t saving once created in our Create New Company page. It appears as if they do; however, going into the account details page shows that the data has not been saved. They do however save in the opportunity details page. I’ve ensured the fields are contained within the model but at this point don’t really know what to look for.Any help would be much appreciated!EDIT: Forgot to note, I know that the Address field is unique to salesforce. I’ve created individual fields for billing address, billing state, billing country etc. but this problem still persists. And i’ve made sure to not include “Billing Address” in the model
Is there a recommended way of testing skuid custom components without manual testing? Since I built a custom component pack, I wasn’t sure if any automated tests exist to test out the builder.js and runtime.js without trial and error.Any thoughts?
I built a custom signature component using jSignature and would like to use it on mobile, but mobile doesn’t seem to like the $(‘MyComponentId’).data(‘object’) syntax. Help?
We’re trying to override the Account / Company / and Opportunities Tab & View Details. We have all the visualforce pages create, are using the Skuid Page Assignments, and have gotten the overrides to work after making necessary changes in Buttons & LinksThe problem is that making the changes in buttons & links overrides it for every user, and right now not every user has SKUID permissions so those users no longer have access to the pages standard.Is there a way we can override those pages specific to the Page Assignments?
I need to clone a line item; however, I also need to clone some fields that are not listed in the table. Reason being is that we have a formula field that is a summation of a bunch of net rate fields, and a workflow rule that makes our amounts field equal to that summation.Problem is when cloning records in-line, the amount is cloned yet the core net rates are not. So when the workflow rule runs on record creation/edit, it makes amounts equal to the sum of net rates which are zero. We need to be able to clone in-line records and have these net rates in the background clone as well, yet putting each of them in the table would take up too much screen real estate. Is there a way we can clone the in-line record as well as the background net rates so our rule works?Also, we have snippets for cloning line items which work perfectly, we just need to work around that workflow rule so the In-Line clone function also clones the fields in the opportunity not listed in the table.
I'm trying to disable a button and it works great in javascript but once I update a model it switches the button back to enable. I'm assuming it's drawing the page again on model update. Is there any way to disable the button? Here is my test javascript code.skuid.$('#TestButton').button('disable'); var mydateModel = skuid.model.getModel('AEMDate'); var firstDateRow = mydateModel.getFirstRow(); alert('end date = ' + firstDateRow.End_Date__c); mydateModel.updateData();
I am building a page to show all of our Billings (custom Object) along with aggregate tables in drawers to show and organize the related Billing Lines (custom object). Here is what I have: A table on the Billings object A drawer that opens an aggregate table, on the Billing lines object, that shows related billing lines grouped by Scope (custom object that billing lines looks up to). My problem is I think with the contex because it works up to this point but when I open a drawer on more then one billing to show the billing lines the original drawer goes blank. I have followed the tutorial on Nested Rows (http://help.skuidify.com/m/supercharge-your-ui/l/269735-add-nested-rows-to-your-table-with-drawers) I have followed the community post about correct alias names (https://community.skuid.com/t/aggregate-model-with-table-drawer-details). Nothing seems to work for me-- I’m sure I’ve overlooking something – any help would be greatly appreciated!!! Here are screen shots hopefully to help po
I have 2 buttons on multiple pages, schedule a call/schedule a meeting. I would like to have a message display at the top of the users home page tab when the scheduled task is occurring in 2 days as a reminder. I’ve read through a lot of related conversations but I didn’t come across one that stood out to be one that was tailored close enough to what I am attempting. Any insights/examples that will point me in the right direction would be greatly appreciated. Thanks
Please find the javascript which is used to display different fields as required in the same column in the table based on the Data type picklist value field and when we tried to save it is throwing error message but its not displaying the field label . Error Message: “Required Fields have no Value [undefined]” var $ = skuid.$, model = arguments[0].model, list = arguments[0].item.list , item=arguments[0].item, row=arguments[0].row, element = arguments[0].element; console.log('arguments[0] '+arguments); var valueType = model.getFieldValue( row , ‘Data_Type__c’ ); console.log(‘repeating’); list.addRequiredField({ id: ‘Number_Draft_Value__c’ }); console.log(); function renderField( fieldName,defaultValue ){ var field = new skuid.ui.Field( row, model, null, { fieldId: fieldName, register: true, mode: 'edit' } ), value = model.getFieldValue( row , fieldName ) ||defaultValue; console.log( field, value ); if(field && field.metadata && field.metadata.displ
I have several users letting me know about template popup issues. Many say that they are unable to edit a custom popup. I have been able to recreate the error by editing the field, saving and then trying to edit it again. It locks you in the pop up.I am running version 6.8.2 if that helps
I have a custom field renderer which highlights background color of a table row if certain condition is true. However, if a user clicks the delete button on that row because of the custom renderer that row does not get highlighted in ‘Pink’. To fix this, I am calling another snippet using model action. Idea is - if a model has rows flagged for deletion the snippet should get called, temporarily disable the custom highlighting. var field = arguments[0]; $ = skuid.$; value = arguments[1]; if(field.element.hasClass(“finished-sentence”)) { field.element.removeClass(“finished-sentence”); } else if (field.element.hasClass(“unfinished-sentence”)){ field.element.removeClass(“unfinished-sentence”); } However, I am getting errors in console on addClass and RemoveClass. Help please!!
I have a Drawer set up to pull the detail of a record, however, only SFDC system administrators can see the contents of the drawer. All of our users are assigned to a SF permission set that allows them to view/edit these fields. I did notice though that under the Skuid Viewer permission set these particular fields are not checked, but not editable either. Any suggestions?
We are having a use case that I thought we could figure out but have not yet. We are trying to build a Table with a Row Per User that has Events scheduled, The part that is hard is that the Columns need to be count of Events by days out from Today (See Attached Screenshot Mockup). Basically have a column for Today, Tomorrow, The next day and so on for 10 Days with a Count of how many Scheduled Events are there in a Table Format. Does anyone have any Ideas or Guidance to how they would approach this with Skuid?
I need to remove a picklist value from a perticular field on a row while they do an edit in table i.e I don’t want to show “Closed Own” Picklist value on stage field . i tried this from what i have learnt.var field = arguments[0];value = skuid.utils.decodeHTML(arguments[1]);oppModel = skuid.model.getModel(‘OpportunityList’);if (field.mode == ‘edit’) { var picklistEntries = field.metadata.picklistEntries; console.log(picklistEntries); for( var x in picklistEntries){ console.log(picklistEntries[x].value); if(picklistEntries[x].value === ‘Closed Own’ ){ console.log(picklistEntries.length); picklistEntries.splice(x , 1); console.log(picklistEntries.length); } }}skuid.ui.fieldRenderers[field.metadata.displaytype]field.mode;*********i was able to remove it form picklistEntries , but i am not sure how to update the field with these new List.Just for Info:I have a row Action Button with multi action button which updates t
Page with four tabs. First tab loads fine. Remaining tabs are blank. Here’s what I’m getting in the console: Uncaught TypeError: Cannot read property ‘Id’ of undefined It’s apparently pointing to line 3417 of skuid_SkuidJS:
It was my impression that if a user was assigned the Skuid Page Viewer premission but not the Skuid Page Builder, they would not see the ‘edit’ button on the right side of their pages, and would not be able to access the builder. That doesn’t seem to be the case. All of our users with skuid licenses can edit pages.Have I misunderstood, or is this a problem?
When working on an ipad, when touching the question mark the help text does not show.
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.