Note: You are currently viewing documentation for Moodle 3.4. Up-to-date documentation for the latest stable version of Moodle is likely available here: Database fields.

Database fields: Difference between revisions

From MoodleDocs
(→‎URL: added screenshot)
(→‎Field types: added explanation of screenshots)
Line 8: Line 8:


== Field types ==
== Field types ==
*The following screenshots show "before" and "afters" of setting up fields. The selection in orange shows the field as it is displayed for the user when they add an entry.


=== Checkbox ===
=== Checkbox ===

Revision as of 21:29, 28 November 2011

This page requires updating. Please do so and remove this template when finished.

A field is a named unit of information. Each entry in a database activity module can have multiple fields of multiple types e.g. a text field called 'favourite color' which allows you to type in your favourite shade, or a menu called 'state' that lets you choose one from a list of the 50 that make up the United States of America. By combining several fields with appropriate names and types you should be able to capture all the relevant information about the items in your database.


Field name and description

  • The name is what is shown when an entry is added. It must be unique and short. The description is for your benefit to help identify that field.

Field types

  • The following screenshots show "before" and "afters" of setting up fields. The selection in orange shows the field as it is displayed for the user when they add an entry.

Checkbox

Checkboxfield1.png

This allows you to offer checkboxes for the user to select. Add the options one under the other. The word will appear next to a checkbox when the user clicks to add an entry. They can check more than one box.

Date

Datefield1.png

This allows a user to enter a date by picking a day, month and year from a drop down list.

File

Filefield.png

Users can upload a file from their computer. If it is an image file then the picture field may be a better choice.

Latitude/longitude

Latlongfield.png

Users can enter a geographic location using latitude and longitude. For example, Moodle HQ is at latitude -31.9545, longitude 115.877. When viewing the record, links are automatically generated linking to geographic data services such as Google Earth, OpenStreetMap, GeaBios,Mapstars and more. (The teacher can choose which of those links appear, if any.)

Menu

Menufield.png

The text entered in the options area will be presented as a drop-down list for the user to choose from. Each line become a different option.

Menu (Multi-select)

Multiselectfield.png

The text entered in the options area will be presented as a list for the user to choose from and each line become a different option. By holding down control or shift as they click, users will be able to select multiple options. This is a fairly advanced computer skill so it may be wise to use multiple checkboxes instead.

Number

Stores a floating number. Examples:

  • -1000
  • 0
  • 0.123

Picture

Picturefield.png

This allows a user to upload and display an image file. "Single view" is when the image is viewed on its own; "list view" is when it is viewed in with other images. Single view can be larger than list view.

Radio buttons

Radiofield.png

The user gets radio buttons and can choose only one. They can only submit the entry when they have clicked on one button.

(Note:If you only have two options and they are opposites (true/false, yes/no) then you could simply use a single checkbox instead. However checkboxes default to their unchecked status and so people could submit without actively selecting one of the options. This may not always be appropriate.)

Text

Textfield.png

Users can enter text up to 60 characters in length. For longer text, or for text that requires formatting such as headers and bullet points, you can use a textarea field.

Textarea

Textareafield.png

This allows users to enter a long piece of text using the rich text editor (TinyMCE)

URL

Urlfield.png

The user can add a link to a website here. If you select autolink then the URL becomes clickable.. If you also enter a forced name for the link then that text will be used for the hyperlink. For example in a database of authors you may wish people to enter the author's website. If you enter the text 'homepage' as a forced name then clicking on text "homepage" will take you to the entered URL.

See also