티스토리 뷰
1. 예시코드
<apex:page standardController="Account">
<h1>Edit Account</h1><br />
<p></p>
<apex:form>
<h1> Salesforce로 데이터를 다시 보내야 하는 경우 대부분 apex:form에서 수행한다. </h1><br />
<apex:inputField value="{! Account.Name}"/><br />
<h1> apex:inputField는 연결된 레코드 데이터 필드에 대한 화면양식을 만든다. </h1><br />
<h1> value 속성에서 관련 필드를 참조하는 표현식을 제공해준다. </h1><br />
<p></p>
<apex:commandButton action="{! save }" value="Save"/><br />
<h1> apex:commandButton는 사용자 인터페이스에 버튼을 추가한다. </h1><br />
<h1> 이 버튼을 클릭하면 작업이 실행된다. </h1><br />
</apex:form>
</apex:page>
2. 예시화면
728x90
'[세일즈포스 개발자]' 카테고리의 다른 글
댓글