You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The **Email** field is a text-based field designed specifically for storing email addresses. It is a specialized version of the **Single line text** field with the following enhancements:
8
9
9
-
`Email` field is text based field custom-built for storing E-mail IDs. It is a special type of `Single line text` field with
10
-
- Optional validation for Email ID
11
-
- Cell display as clickable link
10
+
- Optional validation to ensure values follow a valid email format
11
+
- Display of values as clickable email links
12
12
13
-
## Create an `Email` field
14
-
1. Click on `+` icon to the right of `Fields header`
15
-
2. On the dropdown modal, enter the field name (Optional).
16
-
3. Select the field type as `Email` from the dropdown.
17
-
4. Enable validation by toggling the `Validate Email` checkbox (Optional).
18
-
5. Set default value for the field (Optional).
19
-
6. Click on `Save Field` button.
13
+
## Create an Email field
20
14
21
-

15
+
1. Click the `+` icon next to the last field in your table.
16
+
2. Enter a name for the field.
17
+
3. Select **Email** as the field type.
18
+
4. (Optional) Enable validation by toggling the **Validate Email** option.
19
+
5. (Optional) Set a default value for the field and add a description.
20
+
6. Click **Save field** to add it to your table.
22
21
23
-
<Callouttype="note">
24
-
- Specify default value without quotes.
25
-
- Validation only ensures that the value entered is a valid email ID. It does not check if the email ID exists.
26
-
</Callout>
22
+
Refer to the general guidelines on [creating a field](/docs/product-docs/fields#create-a-field).
27
23
28
-
## Similar text based fields
29
-
Following are the other text based fields available in NocoDB, custom-built for specific use cases.
30
-
-[Single line text](/docs/product-docs/fields/field-types/text-based/single-line-text)
description: 'This article explains how to create & work with a Long text field.'
3
+
description: 'This article explains how to create and use a Long text field.'
4
4
tags: ['Fields', 'Field types', 'Text based types', 'Long text']
5
5
keywords: ['Fields', 'Field types', 'Text based types', 'Long text', 'Create long text field']
6
6
---
7
7
8
+
The **Long text** field is a text-based field that supports multiple lines of text. It is ideal for storing extended content such as descriptions, notes, or comments.
8
9
9
-
`Long Text` field is text based field that allows text in multiple lines. It is useful for storing lengthy text like description, notes, etc.
Alternatively, click the **Expand** icon in the cell to pop out a larger editor for easier editing. Pop-up editor can be resized by dragging its bottom-right corner & moved around by dragging its header.
description: 'This article explains how to create & work with a Phone number field.'
3
+
description: 'This article explains how to create and use a Phone number field.'
4
4
tags: ['Fields', 'Field types', 'Text based types', 'Phone number']
5
5
keywords: ['Fields', 'Field types', 'Text based types', 'Phone number', 'Create phone number field']
6
6
---
7
7
8
+
The **Phone number** field is a text-based field designed for storing phone numbers. It provides an option to validate values to ensure they follow a valid phone number format.
8
9
9
-
`Phone number` field is text based field that allows you to store phone numbers. It also allows you to validate the phone number.
10
+
## Create a Phone number field
10
11
11
-
## Create a `Phone number` field
12
-
1. Click on `+` icon to the right of `Fields header`
13
-
2. On the dropdown modal, enter the field name (Optional).
14
-
3. Select the field type as `Phonenumber` from the dropdown.
15
-
4. Enable validation by toggling the `Validate Phonenumber` checkbox (Optional).
16
-
5. Set default value for the field (Optional).
17
-
6. Click on `Save Field` button.
12
+
1. Click the `+` icon next to the last field in your table.
13
+
2. Enter a name for the field.
14
+
3. Select **Phone number** as the field type.
15
+
4. (Optional) Enable validation by toggling the **Validate Phone number** option.
16
+
5. (Optional) Set a default value for the field and add a description.
17
+
6. Click **Save field** to add it to your table.
18
18
19
-

20
-
21
-
<Callouttype="note">
22
-
- Specify default value without quotes.
23
-
- Validation only ensures that the value entered is a valid phone number. It does not check if the phone number exists.
24
-
</Callout>
25
-
26
-
## Similar text based fields
27
-
Following are the other text based fields available in NocoDB, custom-built for specific use cases.
28
-
-[Single line text](/docs/product-docs/fields/field-types/text-based/single-line-text)
description: 'This article explains how to create & work with a Rich text field.'
3
+
description: 'This article explains how to create and use a Rich text field.'
4
4
tags: ['Fields', 'Field types', 'Text based types', 'Rich text']
5
5
keywords: ['Fields', 'Field types', 'Text based types', 'Rich text', 'Create rich text field']
6
6
---
7
7
8
+
The **Rich text** field is an extension of the **Long text** field that supports text formatting. It allows you to style content with options such as bold, italic, underline, strikethrough, horizontal rules, ordered and unordered lists, code blocks, quotes, and more.
8
9
9
-
`Rich Text` field is text based field & is extension of `Long text` that allows you to add formatting to the text. You can add text formatting like bold, italic, underline, strikethrough, horizontal rule, ordered list, unordered list, code, quote, etc.
NocoDB supports markdown syntax for formatting the text. Following are the supported formatting options.
34
+
NocoDB supports Markdown syntax for formatting the text. Sections below explain various formatting options available in the rich text editor.
35
35
36
36
### Heading
37
37
To create a heading, prefix `#` symbol preceding your heading text. The number of # symbols employed will dictate the heading's hierarchy level and typeface size. Three levels of headings are supported.
@@ -47,43 +47,55 @@ To create a heading, prefix `#` symbol preceding your heading text. The number o
47
47
### Text formatting
48
48
You can emphasise text with bold, italic, strikethrough or underline formatting options. Table below shows syntax, keyboard shortcut, example & output for each formatting option.
Code block can be created by using (3 backticks) before & after the code.
73
+
Code block can be created by using (3 backticks) before & after the code.
74
+
75
+
**Usage**
76
+
70
77
````
71
78
```
72
79
This is a code block
73
80
```
74
81
````
75
82
83
+
**Display**
84
+
76
85
```
77
86
This is a code block
78
87
```
79
88
80
89
### Link
81
-
You can create an inline link by using `Link` menu option in the rich text toolbar
90
+
Use the **Link** option in the rich text toolbar to add inline links. Alternatively, you can use markdown syntax `[link text](URL)`.
91
+
82
92
83
-

84
93
85
94
### Bullet List
86
-
You can create unordered list by using `Bulleted list` menu option in the rich text toolbar or by preceding the text with `-``+` or `*` symbol.
95
+
You can create an unordered list using the **Bulleted list** option in the toolbar or by starting lines with `-`, `+`, or `*`.
96
+
97
+
**Usage**
98
+
87
99
```
88
100
- Item 1
89
101
- Item 2
@@ -95,6 +107,8 @@ You can create unordered list by using `Bulleted list` menu option in the rich t
95
107
* Item 2
96
108
```
97
109
110
+
**Display**
111
+
98
112
- Item 1
99
113
- Item 2
100
114
@@ -104,34 +118,36 @@ You can create unordered list by using `Bulleted list` menu option in the rich t
104
118
* Item 1
105
119
* Item 2
106
120
107
-
:::note
108
-
You can create nested lists by using `tab` key & `shift + tab` key to indent & outdent the list items.
109
-
:::
121
+
<Callouttype="info">You can create nested lists by using `tab` key & `shift + tab` key to indent & outdent the list items</Callout>
110
122
111
123
### Numbered List
112
-
You can create ordered list by using `Numbered list` menu option in the rich text toolbar or by preceding the text with `1.` symbol.
124
+
You can create an ordered list using the **Numbered list** option in the toolbar or by prefixing text with numbers.
125
+
126
+
**Usage**
127
+
113
128
```
114
129
1. Item 1
115
130
2. Item 2
116
131
```
132
+
133
+
**Display**
134
+
117
135
1. Item 1
118
136
2. Item 2
119
137
120
138
### Task list
121
-
You can create task lists by using `Task list` menu option in the rich text toolbar or by preceding the text with `[ ]` symbol. You can mark the task as completed by using `[x]` symbol.
139
+
You can create task lists using the **Task list** option in the toolbar or with `[ ]` and `[x]` for incomplete and completed tasks.
140
+
141
+
**Usage**
142
+
122
143
```
123
144
[ ] Item 1
124
145
[x] Item 2
125
146
```
126
-
-[ ] Item 1
127
-
-[x] Item 2
128
-
129
147
130
-
## Similar text based fields
131
-
Following are the other text based fields available in NocoDB, custom-built for specific use cases.
132
-
-[Single line text](/docs/product-docs/fields/field-types/text-based/single-line-text)
0 commit comments