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
Likely SF patch related… I have installed the Rockaway patch released last night, which cleared up my CSS issue. We use progress indicator images stored as static resources, and a formula field (text) to pick which resource to display. Like this: Post SF Patch 5 and the Rockaway patch, the image is not displaying in Skuid: Image displays just fine on the native SF page: This is a new break - these were working just fine before the patch.
I'm trying to add a summary pie chart on a page but it won't load. I created a new page with just the single model and chart and it still won't load (just shows a blank screen).Code is below. What am I doing wrong?
Hi, I have multiple related lists organized into tabs on my Skuid Account page and I like to include the number of records located inside each tab so that users can quickly see how many records are in a tab without clicking on it. I do this by putting the following in the tab custom label ({{$Model.Contacts.data.length}})This produces a tab that shows Contacts (3) in the tab name. My question is; if I have a tab with multiple models inside of it. ie. a Notes and attachments tab, what is the best way that I sum those together to produce one number for my tab label.ie. if I have 4 notes and 6 attachments for an account, how can I sum ({{$Model.Notes.data.length}}) and ({{$Model.Attachments.data.length}}) to produce “Notes & Attachments (10)” in the tab label.
I wanted to know if there are plans to extend the Salesforce page header override in the Service cloud console? We are so used to seeing our custom branded header and footer override in all our classic apps that then we go to the service console it’s a shock to see the traditional header again.
We have a setup where we are determining what default records to associate with an opportunity based on values on the opportunity or related records. For example, for figuring out the set of documents needed for a particular type of loan, we find out if the borrower is an individual or an entity, if there is property associated with the loan or not, if the loan purpose is construction or purchase or refinance, etc. We have an object Document Reference Template that has text fields that we override as multi-select picklist fields on our setup page, so that we can use a query for if a field on the Template CONTAINS the value of the related field on the opportunity record. We query for all the Templates that match the opportunity fields, then run a snippet to create a Document Reference record for each Template in the query and relate each of the new records to the Opportunity. It’s working pretty great and really hums with Skuid. However, one requirement that we can’t figure out just yet
Looking for some best practices from other Skuid customers as it relates to documentation of a CRM (or other) platform. How have you gone about documenting the Skuid build?What is in the scope of the documentation? Some ideas… UI/style sheet UX process consistencies Page by page details - Components and their characteristics Fields within components and their characteristics Models and their conditions Series/actions taking place CSS classes JS snippetsHow do you maintain the documentation?I know it’s not a fun topic - but brainstorm with me anyways!Thanks
I have configured a chart on a Skuid page. The inputs of the chart is a table which is also on the same page. I can see the chart and its parameters when the page is open in edit mode but can’t see the chart in preview or when an instance of the page is opened. There is no conditionally rendering on the chart. How can I solve this problem?
As an internal user I can see the opportunity chatter feed from the opportunity Skuid page, however, as soon as I log in as a partner user, the chatter feed does not display. Partner Users can view the chatter feed via the standard opportunity page view, just not via the Skuid Page. I can also verify that they have access to the Social visualforce page. Any help would be much appreciated!
In one of my skuid page for new records i am getting error as: Apex heap size too large: 9436523 Please can any one tell me why i am getting this error? Please reply ASAP and tell me of this error. Thanks. Arpit
I’m not sure when this started but on certain pages, I’m seeing a box surround checkbox fields. What happened and how do I remove that?Thanks
Hi, This issue has been getting worse and worse for my users and nothing I tried seems to be able to resolve it. I’ve followed every tip and went through all documentation i could find regarding this sort of issue, but to no avail. If possible could maybe one of you point me in the right direction or let me know what is cause of issue? The page loads properly and fast enough, but issues are mainly lag when interacting with Picklist fields and at some moments when typing in notes. I’ve recorded the screen of one of the users to show the issue I’m experiencing, which is not at it’s worse, but at least will give you an idea. here’s a link to video on my dropbox: https://dl.dropboxusercontent.com/u/71284089/ice_video_20160502-110726.webm Pls notice the lag when changing picklist values and trying to type in a note or skipping a line… It gets worse as the day goesThx
This is a bug similar in nature to this one posted by Roman Melnik many months ago. The fix is further below, and shown in the video. I have a chart displaying some basic info as follows: And Action framework setup such that when I click on a specific bar it applies filters to my model like so: And then this happens: The fix is to format the value being set on a condition in the following way: {{{ **rows.0.** FIELDNAME}}} That’s all! Hope it helps #skuid #CommunityWednesdays #profit
I am finding UI-Only fields to be very powerful. I now have a situation where I want to test one UI-Only field for null in the formula for another UI-Only field. The field being tested is numeric, it is displayed for input in a field editor, but it acts like it has a value of 0 before the user even makes an entry.I have tried IF({{MyQty}}==null…, IF({{MyQty}}=={{Blank}}…, and simply IF({{MyQty}}… None of these are able to distinguish between an empty field and an input of zero (0).
I just noticed this today. Not sure if it was happening before 8.8.
Hi All, I’m having a problem with a UI-Only formula not calculating correctly. To make it simple, I’m just trying to get the value from another model into the formula first and then I’ll add the rest of the formula once I know that’s working. I believe I have everything right, but my UI-Only Field “QtyPerCtns” value should be the same as the value entered in the Job Qty Produced field, but it’s not updating! I know it should work, but can’t figure out why its not. I have the JobSelect Model above the Receiving Model which is where the UI-Only field is located. Any idea what would be causing this? Thanks for the help!
Hi, It seems when having a table with many rows and summary, If using the option ‘Keep headers visible’ , that the summary often appears multiple times when scrolling back up Me and Barry went back and forth on it in case interested see this post towards the end of thread Here’s basically Barry’s summary of issue: When table repaints, it must ensure that the column summary cell gets redrawn properly and the “floating” one eliminated. And here’s xml to reproduce Preview page Scroll down to bottom Scroll up to top Change “Show Top” field from True to False <fields> <field id="Name"/> <field id="CreatedDate"/> <field id="Fax"/> <field id="Phone"/> <field id="Rating"/> <field id="AnnualRevenue"/> <field id="NewField" uionly="true" displaytype="FORMULA" precision="9" scale="2" readonly="true" returntype="DOUBLE"> <formula>
Is it possible to force a field to re-render in a snippet?Here’s the use case:We have two datetime fields, Out Date and In Date. The In Date shouldn’t be before the Out Date. We have a field renderer on In Date that prevents the user from selecting a date in the datepicker that is before the out date: var field = arguments[0], <br> value = arguments[1];<br>skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value);<br>if (field.mode==='edit'){ if (field.row.CheetahBMS__Out_Date__c !== undefined){ var dateInput = field.element.find('input.hasDatepicker'); dateInput.datepicker("option","defaultDate",skuid.time.parseSFDate( field.row.CheetahBMS__Out_Date__c )); dateInput.datepicker("option","minDate",skuid.time.parseSFDate( field.row.CheetahBMS__Out_Date__c )); dateInput.datepicker("refresh"); } } This works when you just edit the In Date. However, if you edit the Out Date, it does not rerender the In Date and you are able to choose a date that is bef
Hi community~ Several people have asked how to have Skuid pass ID’s when creating a junction object record. Glad you asked! In this scenario, I am using the standard Salesforce objects of opportunities, products, and opportunity products (the junction object as shown from schema builder below). In order to pass the ID of the opportunity to the new opportunity product record, a specific opportunity must be selected. Here is what my opportunity detail page looks like to the user: To add the opportunity product record, the user would click on the Add Product button which on the back end looks like: and the popup looks like: In this scenario, the popup is connected to a page include. The query string should be as shown: id={{$Param.id}}. This will pass the ID from the opportunity record to the opportunity product record. On the front end, the popup my users will see looks like: The popup automatically gets filled with the opportunity ID and today’s date by following the directions belo
I tried moving my production pages to sandbox by using this tutorial: Page Not Found — Skuid v15.1.6 Documentation I packaged them up, then I opened the static resource and did the save as .json . I then uploaded this JSON file into the static resources in sandbox. When I try to unpack the file does not appear as an option to unpack. Anyone have any ideas?
We are seeing a a strange problem whereby Internet Explorer 11 consumes memory each time a VS/Skuid page is loaded, doesn’t release this memory, and eventually crashes. We are running a a single Skuid component in an an otherwise empty VisualForce page. Users are in a tight workflow of navigating between three pages (search, security check, and member views). The member view page is rather large. Each time one of these cycles is completed IE11 consumes another ~40-80mb of memory and somehow doesn’t release the memory when browsing to another page. Closing the tab in question releases the memory. You can see an example with four members: Strangely, even browsing to Google in the tab in question doesn’t seem to result in the memory being released. The example below shows two cycles of search, security and member, and then typing "www.google.com"; Any ideas?
I have a simple custom Salesforce button that open a new email with email address when clicked. The button works well in standard Salesforce page but when I add to Skuid the link does not work well, I am getting the following error “You have sent us an Illegal URL or an improperly formatted request” Does anyone know what I am missing?
Hi, I have setup a Page Assignments to redirect users to a SKUID page when the Record Type is Program. License has been allocated to users but the redirect action did not work for non Administrator Profile users (these users were assigned a license), where they were redirected to the Standard SFDC page. All visualforce Page and apex components have been added to the other profiles. Is there a Profile permission that needs to be granted? or Is there a step that I had missed? Here is my page assignment setup: Here is my Visualforce redirect Page:
Hello, Maybe this has been mentioned before but couldn’t find anything on the community, but is it possible to set a specific field’s rendering as read or read-only based on the value of another field? Based on a status I’m looking to make a field Read-Only and then when it moves out of that status it should be read (with inline editing again).Thanks!Jeff
We have a ui-only Formula(Text) field that’s used as a grouping on a chart. The formula is written as follows:MONTH_NAME_SHORT({{CompletedDate__c}})+" “+DAY({{CompletedDate__c}})+”, "+YEAR({{CompletedDate__c}})For some reason it seems to be evaluated for CompletedDate__c minus one day. For example, if CompletedDate__c = “2015-03-01”, then the formula evaluates to Feb 28, 2015.Do you know why that might be the case?Thanks,Kartik Sethuraman
We are using tasks for correlation meetings. Users are assigned tasks and they can report on their progress using chatter. In correlation we show the tasks in a list view. On the left hand side of the tasks there is a “sk-icon-comments” chat bubble that is a Pop up and pulls in the tasks Chatter feed. It would be awesome if I could show a comment count somewhere on the row so we could see if there are comments on the task. If there aren’t it is a waste to click each one. But if a task has comments it would be nice to know. Thoughts? Or better ideas?Thanks!
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.