Developing an editable table
An editable table is a table that allows you to update records inline. This is a very common requirement in every web application that allows users to update records inline. So, in this section, we'll develop a page with a table that allows us to update the records inline.
We'll use the following steps to achieve this (developing an editable table) use case:
- Populate the table from the Business Object using the
ADP
variable. - Register events on the table.
- Implement the logic to support inline editing in a table.
- Add a button to save all modified records.
We'll look at the aforementioned steps in the following sections.
Populating the table from the Business Object using the ADP variable
ADP type variables are basically used whenever you want to implement functionality such as search, update, sort, and so on. So, we'll create a table based on the ADP variable. Refer to the Loading data on page load section...