- Visualforce Development Cookbook
- Keir Bowden
- 193字
- 2021-08-06 16:43:38
Introduction
Forms are a key feature of any application that makes use of Visualforce. They provide a mechanism to capture data entered by the user and send this to the page controller for processing, for example, to create, edit, or delete sObject records, or to send the user to a specific page.
Users enter data through input components. Visualforce provides a specific standard component, <apex:inputField />
, for entering sObject field data. This component renders the appropriate device for entering data based on the field type, such as a JavaScript date picker for a field of type Date
. Input components are bound to sObject fields or controller properties via the merge syntax. Controller properties that are public and have a public getter and setter may be bound to input components without writing any further code.
Processing of the submitted form is carried out via Action methods. These may be provided automatically by the platform in the case of standard controllers, or coded using Apex in the case of extension or custom controllers. Action methods can rely on all sObject fields and controller properties bound to input components containing the latest user input when they execute.
- Rust編程:入門、實戰(zhàn)與進階
- Visual C++實例精通
- PHP+Ajax+jQuery網(wǎng)站開發(fā)項目式教程
- C專家編程
- Cocos2d-x by Example:Beginner's Guide(Second Edition)
- 寫給大家看的Midjourney設(shè)計書
- Getting Started with React VR
- Python硬件編程實戰(zhàn)
- Mastering ASP.NET Core 2.0
- Python數(shù)據(jù)科學(xué)實踐指南
- ASP.NET Core and Angular 2
- 透視C#核心技術(shù):系統(tǒng)架構(gòu)及移動端開發(fā)
- Managing Windows Servers with Chef
- Spring Boot 2+Thymeleaf企業(yè)應(yīng)用實戰(zhàn)
- 秒懂算法:用常識解讀數(shù)據(jù)結(jié)構(gòu)與算法