Skip to content

Commit

Permalink
working dataset virtualisation
Browse files Browse the repository at this point in the history
  • Loading branch information
interrogator committed Nov 30, 2019
1 parent 99d5077 commit b63158a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions explorer/parts/tabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,18 @@ def _build_dataset_space(df, config):
columns=columns,
data=data,
editable=True,
style_cell=style.HORIZONTAL_PAD_5,
style_cell={**style.HORIZONTAL_PAD_5, **{'whiteSpace': 'normal'}},
filter_action="native",
sort_action="native",
sort_mode="multi",
row_deletable=False,
selected_rows=[],
page_action="native",
page_action="none",
page_current=0,
page_size=config["page_size"],
# style_as_list_view=True,
virtualization=True,
fixed_rows={ 'headers': True, 'data': 0 },
style_header=style.BOLD_DARK,
style_cell_conditional=style.LEFT_ALIGN,
style_data_conditional=style.INDEX + style.STRIPES,
Expand Down

0 comments on commit b63158a

Please sign in to comment.