Adds an item to the list at a time.
it can be done on desktops and laptops by pressing Enter, too.
An item to be added must NOT be empty.
For example:
Clear all items of the list;
the list (if saved) in the web browser remains unchanged.
This only works when there is at least one item in the list.
Export the list as a file (text files only).
All items in this list can be seen in the exported file.
Once exported, the file looks like the following:
item1, checked1
item2, checked2
item3, checked3
...
itemN, checkedN
where for each item,
itemN is the contents,
and checkedN is the checked status (true or false only).
Import the list from a file (text files only).
Make sure the file to import follows the following pattern:
item1, checked1
item2, checked2
item3, checked3
...
itemN, checkedN
where for each specific item,
itemN is the contents,
and checkedN is the checked status (true or false only).
Any flaws found in the file results in an error,
pointing out the line where the first error is found.
When attempting to import the following file, for example:
Line
1 | John, false
2 | Jessica, true
3 | Albert, false, folk
4 | Simon, trust
5 | Billy, true
6 | Paul, fault
The first error will be found on line 3,
pointing out that while
the contents is present,
i.e. 'Albert, false',
its checkbox status
is neither 'true' nor 'false'.
Saves the list in the web browser.
If there is already a one saved in the web browser, users may overwrite it with a new list by clicking OK.
Load the list saved in the web browser.
This only works when there is a list saved in the web browser.
Delete the list stored in the web browser;
the list buffer remains unchanged.
This only works when there is a list saved in the web browser.
Sorts all items in the list, based on a specific property.
NOTE: There should be at least one item in the list buffer.
There are four ways to sort items:
Arranges all items from smallest to largest, i.e. A-Z, a-z, 0-9
After sorting:
the greater an item is, the closer it is to the bottom of the list;
the less an item is, the closer it is to the top of the list.
Arranges all items from largest to smallest, i.e. Z-A, z-a, 9-0
After sorting:
the greater an item is, the closer it is to the top of the list;
the less an item is, the closer it is to the bottom of the list.
Arranges all items by checkbox status from latest done to earliest done.
After sorting:
All things done are placed near the bottom of the list, whereas all things not yet done are placed near the top of the list.
Both of the done and the not-yet-done
Arranges all items by checkbox status from latest done to earliest done.