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
@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. I am wondering how to make the package better.
It essentially just defines a Blink.Window and fills it with the output of showtable. Currently, it's a bit slower "time to first table view" than I am hoping for.
I am wondering what changes you have in mind on either my end or yours to improve performance.
Opening a blink window is sluggish. Do you think that I would see a significant performance improvement if I opened the table in a browser using Mux? I have been reading documentation on this and cannot figure it out. If possible, could you add instructions on this to the readme?
Viewing 1000 or more columns makes scrolling a bit slow. Do you think it would be possible to change the default number of columns loaded in memory to be smaller?
I don't have any interest in edit functionalities, and don't know how to implement them using my Blink window. Would there be performance improvements if the kind of "watching" that ag-grid does were turned off? Perhaps the fact that cells can be edited in the future is slowing things down.
I am very interested in what is possible with a command-line table viewing tool. Please let me know if you have any thoughts on the above points.
Thank you
The text was updated successfully, but these errors were encountered:
Opening a blink window is sluggish. Do you think that I would see a significant performance improvement if I opened the table in a browser using Mux? I have been reading documentation on this and cannot figure it out. If possible, could you add instructions on this to the readme?
That's very likely faster, yes. In theory
using WebIO, Mux, TableView
WebIO.webio_serve(showtable(rand(10,10))
Viewing 1000 or more columns makes scrolling a bit slow. Do you think it would be possible to change the default number of columns loaded in memory to be smaller?
AFAICT that's not possible. We can (should) however switch to async viewing based on the number of displayed elements, not displayed rows (as is happening currently).
I don't have any interest in edit functionalities, and don't know how to implement them using my Blink window. Would there be performance improvements if the kind of "watching" that ag-grid does were turned off? Perhaps the fact that cells can be edited in the future is slowing things down.
I've been able to get that far with Mux, but I'm stuck on the last step. How do I get a Task (runnable) to display in the browser? Any help is appreciated. I can't find docs on this anywwhere.
With regards to editing, is it possible to edit on any of the displays for TableView? I haven't been able to get editing to work.
@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. I am wondering how to make the package better.
It essentially just defines a
Blink.Window
and fills it with the output ofshowtable
. Currently, it's a bit slower "time to first table view" than I am hoping for.I am wondering what changes you have in mind on either my end or yours to improve performance.
I am very interested in what is possible with a command-line table viewing tool. Please let me know if you have any thoughts on the above points.
Thank you
The text was updated successfully, but these errors were encountered: