nickforce.blogspot.com
Nickforce - Salesforce.com, Google, Apex, Visualforce, Java, App Engine, AWS, GWT, Android, Flex, .NET, ASP .NET, SQL, Force.com.nickforce: Attach PDF to Chatter Feed Item in Salesforce
http://nickforce.blogspot.com/2013/07/attach-pdf-to-chatter-post-in-salesforce.html
Code samples from beginner level to advanced using Salesforce force.com development,. Visualforce, ASP.NET, jQuery, CSS and more. Monday, July 8, 2013. Attach PDF to Chatter Feed Item in Salesforce. Create PDF and Share to Chatter" action. Public with sharing class pdfGenerator {. String chatterMsg { get. String chatterFileName { get. String newLink { get. Boolean showNewLink { get. String a = [ SELECT. PDF Generate / and post to chatter. PageReference pdf = Page.accountPDF;. Body = pdf.getContent();.
nickforce.blogspot.com
Nickforce - Salesforce.com, Google, Apex, Visualforce, Java, App Engine, AWS, GWT, Android, Flex, .NET, ASP .NET, SQL, Force.com.nickforce: Keyword Action Chatter Trigger β Keyword in chatter used to update/change records
http://nickforce.blogspot.com/2011/05/chatter-trigger-practice-demo.html
Code samples from beginner level to advanced using Salesforce force.com development,. Visualforce, ASP.NET, jQuery, CSS and more. Monday, May 2, 2011. Keyword Action Chatter Trigger β Keyword in chatter used to update/change records. This is a practice demo for the new chatter triggers, working from the released Spring '11. By typing the keyword '! Here is the trigger code. Trigger CloseOpportunity on FeedItem (after insert) { Set. OppIds = new Set. Tasks = new List. Opps2Update = new List.
nickforce.blogspot.com
Nickforce - Salesforce.com, Google, Apex, Visualforce, Java, App Engine, AWS, GWT, Android, Flex, .NET, ASP .NET, SQL, Force.com.nickforce: Salesforce How to Debug / Troubleshoot using the Salesforce Debug Logs
http://nickforce.blogspot.com/2011/11/salesforce-how-to-debug-troubleshoot.html
Code samples from beginner level to advanced using Salesforce force.com development,. Visualforce, ASP.NET, jQuery, CSS and more. Friday, November 4, 2011. Salesforce How to Debug / Troubleshoot using the Salesforce Debug Logs. Setting up your user for Debug Log monitoring. Name / Setup / Administration Setup / Monitoring / Debug Logs. Click βNewβ. Select your User from the lookup. Click 'Save'. Using the Debug Log. Other Userful Debug Messages. You can output variable values as well instead of just usin...
nickforce.blogspot.com
Nickforce - Salesforce.com, Google, Apex, Visualforce, Java, App Engine, AWS, GWT, Android, Flex, .NET, ASP .NET, SQL, Force.com.nickforce: Visualforce actionStatus Component using the salesforce animated gif
http://nickforce.blogspot.com/2011/06/visualforce-actionstatus-component.html
Code samples from beginner level to advanced using Salesforce force.com development,. Visualforce, ASP.NET, jQuery, CSS and more. Sunday, June 26, 2011. Visualforce actionStatus Component using the salesforce animated gif. Here is the markup. Div style="position: relative;". Div class="waitingSearchDiv" id="el loading" style="background-color: #fbfbfb;. Height: 100%;opacity:0.65;width:100%;". Div class="waitingHolder" style="top: 74.2px; width: 91px;". Span class="waitingDescription" Loading. /span.
nickforce.blogspot.com
Nickforce - Salesforce.com, Google, Apex, Visualforce, Java, App Engine, AWS, GWT, Android, Flex, .NET, ASP .NET, SQL, Force.com.nickforce: Preventing focus of first input field and Calendar widget on page load in Salesforce
http://nickforce.blogspot.com/2011/07/preventing-focus-of-first-input-field.html
Code samples from beginner level to advanced using Salesforce force.com development,. Visualforce, ASP.NET, jQuery, CSS and more. Tuesday, July 26, 2011. Preventing focus of first input field and Calendar widget on page load in Salesforce. Calendar widget(not a permanent solution as class names and javascript libraries could change at any point in time). Input id="hiddenElement" type="hidden" /. Window.onload = setFocus. Document.getElementById("hiddenElement").focus();. To a demo of the calendar widget ...