@@ -53,18 +53,19 @@ showtable(table::AbstractMatrix; kwargs...) = showtable(Tables.table(table); kwa
53
53
Return a `WebIO.Scope` that displays the provided `table`.
54
54
55
55
Optional arguments:
56
- - `options`: Directly passed to agGrid's `Grid` constructor. Refer to the
57
- [documentation](https://www.ag-grid.com/documentation/) for more info.
58
- - `options_mutator!`: Runs on the `options` dictionary populated by TableView and allows for
59
- customizing the grid (at your own risk -- you can break the package by
60
- supplying invalid options).
61
- - `dark`: Switch to a dark theme.
62
- - `title`: Displayed above the table if non-empty;
63
- - `height`/`width`: CSS attributes specifying the output height and with.
64
- - `cell_changed`: Either `nothing` or a function that takes a single argument with the fields
65
- `"new"`, `"old"`, `"row"`, and `"col"`. This function is called whenever the
66
- user edits a table field. Note that all values will be strings, so you need to
67
- do the necessary conversions yourself.
56
+
57
+ - `options`: Directly passed to agGrid's `Grid` constructor. Refer to the
58
+ [documentation](https://www.ag-grid.com/documentation/) for more info.
59
+ - `options_mutator!`: Runs on the `options` dictionary populated by TableView and allows for
60
+ customizing the grid (at your own risk -- you can break the package by
61
+ supplying invalid options).
62
+ - `dark`: Switch to a dark theme.
63
+ - `title`: Displayed above the table if non-empty;
64
+ - `height`/`width`: CSS attributes specifying the output height and with.
65
+ - `cell_changed`: Either `nothing` or a function that takes a single argument with the fields
66
+ `"new"`, `"old"`, `"row"`, and `"col"`. This function is called whenever the
67
+ user edits a table field. Note that all values will be strings, so you need to
68
+ do the necessary conversions yourself.
68
69
"""
69
70
function showtable (table;
70
71
options:: Dict{Symbol, Any} = Dict {Symbol, Any} (),
0 commit comments