2018-05-11から1日間の記事一覧

Salesforce Apex

Salesforce Apex 参考URL https://trailhead.salesforce.com/ja/modules/apex_database/units/apex_database_intro

Salesforce apex:actionSupport

Salesforce apex:actionSupport 例 actionSupport.page ーー <apex:page controller="exampleCon"> <apex:form> <apex:outputpanel id="counter"> <apex:outputText value="Click Me!: {!count}"/> <apex:actionSupport event="onclick" action="{!incrementCounter}" rerender="counter" status="counterStatus"/> </apex:actionsupport></apex:outputtext></apex:outputpanel></apex:form></apex:page>

Salesforce VisualforceとJQuery

Salesforce VisualforceとJQuery jqueryダウンロード <apex:page ><apex:includeScript value="{!$Resource.jquery}"/><html><head> <script> jQuery.noConflict(); jQuery(document).ready(function() { jQuery("a").click(function() { alert("Hello world, part 2!"); }); }); </script></head></html></apex:page> 参考URL https…

ITと SI ベンダー

IT

IT と SIとは 一般的には、その持つ意味の範囲は IT:Information Technology(情報技術)> SI:System Integration(システム構築) とITのほうが広いです。 ベンダー 製品のメーカー、または販売会社のこと。基本的には、ユーザーへ製品を提供している会社…

Salesforce Lightning Experience

Salesforce Lightning Experience LEX環境とClassic環境での開発スタイルの違い Salesforceのクライアント画面自体がJavaScriptベースのSPA(Single Page Application)として構築されているため、従来型のWebアプリケーションであるClassic環境とはUI部分の…

Salesforce Visualforce アプリケーション開発

Salesforce Visualforce アプリケーション開発 参考URL https://trailhead.salesforce.com/ja/modules/visualforce_fundamentals/units/visualforce_intro