cursive_table_view icon indicating copy to clipboard operation
cursive_table_view copied to clipboard

A basc table view compnent for cursive.

Results 16 cursive_table_view issues
Sort by recently updated
recently updated
newest added

How do I adjust the table to occupy minimal vertical space? It would be nice to have: * Ability to move column headers from top to bottom. * Ability to...

Hello, is it possible to create a table at running time dynamically? or create columns at runtime??

### Steps to reproduce 1. Apply this diff to basic example ```diff diff --git a/examples/basic.rs b/examples/basic.rs index 677bb81..5969863 100644 --- a/examples/basic.rs +++ b/examples/basic.rs @@ -100,22 +100,20 @@ fn main() {...

Hi everyone, I'm using cursive crate along with cursive_table_view crate. I'm registering callback to each created table and yes, this callback is being triggered, but I believe that there is...

In case of having multiple tableviews in a Layout, how to check which one is active?

Is there an easy way to get currently selected row?

Currently, `TableViewItem::to_column` returns a `String`. It would be convenient to be able to add some style to the string, or maybe even to be able to use an arbitrary view...

Cursive library introduced new trait: https://docs.rs/cursive/0.15.0/cursive/traits/trait.Nameable.html#method.with_name This breaks this library if I want to use `with_name()` or `NamedView` directly. My example usage gives me this error when I try to...

While vertical scrolling is present and works great, there is a noticeable lack of horizontal scrolling. When the number of columns exceeds what can be displayed on the screen (or...

Currently, we have methods to manipulate columns (add, insert, remove), but there is no method to retrieve a list of current columns. For example: if I want to remove column...