Maarten Breddels
Maarten Breddels
Yes, in that case you'd want to have more flexibility indeed. Our longer term plan is to separate the DataFrame into a base component that is more level and would...
Hi Nick, we share a common dream then! Our idea for the DataTable (or DataFrame) is to separate it into a very dumb view, that takes in the length and...
No, I suggested splitting off the 'view' (say, call it DataFrameView) part of the dataframe into a separate component, such that the higher level DataFrame component uses the DataFrameView component....
```python @solara.component def DataTableView( records, column_names, page=0, on_page=None, items_per_page=20, format=None, column_actions: List[ColumnAction] = [], cell_actions: List[CellAction] = [], scrollable=False, on_column_header_hover: Optional[Callable[[Optional[str]], None]] = None, column_header_info: Optional[solara.Element] = None, ): return...
I think we should check all empty spans, and make sure we are compatible with ipyvue < 1.11.0 https://github.com/widgetti/ipyvue/pull/92
From your screenshot, Python thinks solara is a namespace package (probably an empty directory left over for unknown reasons?). You can take a look at `solara.__path__` to debug this yourself,...
Hi Dheepak, thanks for opening this issue. This, indeed, seems incorrect. Note that you can also use display(df) in Solara, which uses the same way of displaying the table, but...
Hi @SarthakNikhal , sounds good. Please also look at https://github.com/widgetti/solara/pull/600 because that might interfere with your plans. I hope we can get that PR in soon, so we won't have...
Hi Brian, thank you for the detailed explanation. This should be a relative easy fix (although difficult to test in CI). Regards, Maarten
Do you feel comfortable opening a PR for this? https://solara.dev/documentation/advanced/development/setup should guide you though it.