Skip to content

Instantly share code, notes, and snippets.

View tyoshikawa1106's full-sized avatar

Taiki Yoshikawa tyoshikawa1106

View GitHub Profile
@tyoshikawa1106
tyoshikawa1106 / HelloWorld.cls
Last active December 16, 2015 00:09
はじめてのGist
public HelloWorld() {
System.debug('Hello World!!');
}
@tyoshikawa1106
tyoshikawa1106 / ProfileViewerPage.page
Created April 10, 2013 13:24
social:profileViewer - ソーシャルアカウントとアカウントへのコンタクトビューア
<apex:page standardController="Contact" id="page">
<social:profileViewer entityId="{!contact.id}"/>
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / ListViewsPage.page
Created April 11, 2013 14:05
apex:listViews - リストビュー
<apex:page showHeader="true" tabstyle="Case">
<apex:ListViews type="Case" />
<apex:ListViews type="Opportunity" />
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / DynamicComponentDemoController.cls
Last active December 16, 2015 04:19
Apex DynamicComponentSample
public with sharing class DynamicComponentDemoController {
public Account account {get; set;}
/*
* DynamicComponentDemoController
*/
public DynamicComponentDemoController() {
this.account = new Account();
}
@tyoshikawa1106
tyoshikawa1106 / ChatterFeedWithFollowersPage.page
Last active December 16, 2015 04:59
chatter:feedWithFollowers
<apex:page standardController="Contact">
<chatter:feedWithFollowers entityId="{!Contact.Id}" />
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / ChatterFeedPage.page
Last active December 16, 2015 04:59
chatter:feed
<apex:page standardController="Contact">
<chatter:feed entityId="{!Contact.Id}" />
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / ChatterFollowersPage.page
Last active December 16, 2015 04:59
chatter:followers
<apex:page standardController="Contact">
<chatter:followers entityId="{!Contact.Id}" />
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / ChatterFollowPage.page
Last active December 16, 2015 04:59
chatter:follow
<apex:page standardController="Contact">
<chatter:follow entityId="{!Contact.Id}" />
</apex:page>
@tyoshikawa1106
tyoshikawa1106 / ChatterNewsfeedPage.page
Last active December 16, 2015 04:59
chatter:newsfeed
<apex:page standardController="Contact">
<chatter:newsfeed />
</apex:page>
<apex:page id="commonIncluded">
<apex:includeScript value="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" />
</apex:page>