describe three forms of data?
Answers
Answer:
labels, values and formula are three forms of data
Answer:
There are 3 classifications of data forms: Add Forms, Edit Forms and View Forms.
Add Data Forms are created using an AddDataFormTemplateSpec.Add Data Forms add new records to the system. Add Data Forms consist of a save implementation which is the business logic tier code used to save the data to the data store. Optionally, a load implementation can be used to define processing before the user interface is displayed.
Add Data Forms are created using an AddDataFormTemplateSpec.Add Data Forms add new records to the system. Add Data Forms consist of a save implementation which is the business logic tier code used to save the data to the data store. Optionally, a load implementation can be used to define processing before the user interface is displayed.Edit Data Forms are created using an EditDataFormTemplateSpec. Edit Data Forms are used to edit existing records in the system. The ID of the content to be edited will need to be sent to the Edit Data Form has to be provided so that it knows what record is being edited. They consist of a “load” stored procedure, which loads the existing data in the data form, and a “save” stored procedure which saves any changes a user makes.
Add Data Forms are created using an AddDataFormTemplateSpec.Add Data Forms add new records to the system. Add Data Forms consist of a save implementation which is the business logic tier code used to save the data to the data store. Optionally, a load implementation can be used to define processing before the user interface is displayed.Edit Data Forms are created using an EditDataFormTemplateSpec. Edit Data Forms are used to edit existing records in the system. The ID of the content to be edited will need to be sent to the Edit Data Form has to be provided so that it knows what record is being edited. They consist of a “load” stored procedure, which loads the existing data in the data form, and a “save” stored procedure which saves any changes a user makes. View Data Forms are created using a ViewDataFormTemplateSpec. View Data Forms are used to retrieve data in a read only fashion. These data forms are primarily used to display records in the system. View Data Forms may also be used for behind the scenes data retrieval such is the case with an Expression Data Form. A page may contain a reference to a page expression data form which is a type of View Data Form. A page expression data form is never actually displayed in the user interface. Instead it acts behind the scenes to gather important information about the displayed record and make it available to the page. This allows the page author to write regular expressions to dynamically alter what is displayed on the page.