Kexi/Handbook/Building Simple Databases/Designing Forms/Forms versus tables

From KDE UserBase Wiki
Revision as of 16:42, 17 May 2015 by Inksi (talk | contribs) (grammatical changes for readability)
Other languages:

Forms versus tables

In chapter Entering Data Into Tables you learned about how to enter data directly into tables using their data sheet view. However, in many cases forms are better suited for the editing of existing data as well as the entry of new data:

  • A table can contain too many columns to display them within the width of the screen without scrolling. A form can display such data using fields (or field widgets) placed logically over a whole page.
  • A form displays the fields for one record at a time. This is less confusing than viewing data presented in the multiple row (record) format of a table
  • A form allows you to split data fields into logical groups, thus increasing readability. Labels with additional information can be inserted to give users more hints on how to use the form or what given data fields mean.
  • Command buttons can be used within forms for commonly used commands so users can use forms in a similar way as a standalone applications they know.