Improvements to Widget DataTable documentation (#4706)

* Preamble.  Mention commonly searched for capabilities missing, e.g., formatting and filtering.

* Clarify zebra_stripes as using alternating styles.

* Expand Cursors section to mention None type of cursor, clarify keyboard and mouse events, and that row indices start at one.  Expand example for No Cursor option.

Also minor typos to previous two commits (preamble wording and zebra stripes).

* Expand sorting section for clarity.

Minor typos in Labeled Rows and Cursors sections.

* In Keys section, mention functions taking coordinates.

Fix typo in Sorting section.

* Minor changes

---------

Co-authored-by: Darren Burns <darrenb900@gmail.com>
This commit is contained in:
Charles Merriam
2024-07-10 08:38:05 -07:00
committed by GitHub
parent 2401ea7381
commit b5e165f533
3 changed files with 41 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ ROWS = [
(10, "Darren Burns", "Scotland", 51.84),
]
cursors = cycle(["column", "row", "cell"])
cursors = cycle(["column", "row", "cell", "none"])
class TableApp(App):