TableView.jl icon indicating copy to clipboard operation
TableView.jl copied to clipboard

A Tables.jl compatible table viewer based on ag-grid

Results 29 TableView.jl issues
Sort by recently updated
recently updated
newest added

``` using TableView, Interact, Blink, DataFrames, Observables t = showtable(DataFrame(:A => [1,2])) o = Observable(OrderedDict(:t => t)) body!(Window(), tabulator(o)) notify(o) ``` causes 2 tables to appear instead of one ![image](https://user-images.githubusercontent.com/45759112/154122454-88a77486-445b-4a15-82bc-624b0b2843a5.png)...

I currently find it very hard to read wide tables in TableView as I lose my bearing on which row I'm looking at when scrolling. I have two suggestion for...

enhancement

I got [this issue](https://github.com/pdeffebach/FloatingTableView.jl/issues/27) report in FloatingTableView.jl. Basically, the user wants, when opening a dataset, to be able to use arrow keys to navigate from the get-go, without clicking on...

This pull request changes the compat entry for the `JSExpr` package from `0.4, 0.5` to `0.4, 0.5, 1`. This keeps the compat entries for earlier versions. Note: I have not...

Hi. I’m involved in the development of [OpticSim](https://github.com/microsoft/OpticSim.jl), which is an open-source package for optics simulation. We decided that our first version of UI tools will be developed using Blink,...

Just came across this slightly puzzling issue: ``` using TableView, DataFrames showtable(DataFrame(a = 0.0, b = "t\xe9st")) ``` This produces an empty output table, showing only the column header row...

bug

I'm trying to display the following small table taken from #48 ``` using DataFrames, TableView a = randn(10) b= randn(10) data = DataFrame(a=a,b=b) showtable(data) ``` In Jupyter notebook I get...

I am working in a Jupyter notebook using IJulia, Ubunto 19.10. Here is my Project.toml ``` Status `~/Documents/Projects/test/Project.toml` [a93c6f00] DataFrames v0.21.1 [7073ff75] IJulia v1.21.2 [40c74d1a] TableView v0.6.0 ``` When I...

@pfitzseb let me say thank you for your work on TableView. Partly in response to #32 I have been working on my own package called [FloatingTableView](https://github.com/pdeffebach/FloatingTableView.jl). I am wondering how...