@@ -570,44 +570,43 @@ class can be constructed directly but that's not recommended because
570
570
_model_module_version = Unicode ('1.1.1' ).tag (sync = True )
571
571
572
572
_df = Instance (pd .DataFrame )
573
- _df_json = Unicode ('' , sync = True )
573
+ _df_json = Unicode ('' ). tag ( sync = True )
574
574
_primary_key = List ()
575
575
_primary_key_display = Dict ({})
576
- _row_styles = Dict ({}, sync = True )
576
+ _row_styles = Dict ({}). tag ( sync = True )
577
577
_disable_grouping = Bool (False )
578
- _columns = Dict ({}, sync = True )
579
- _editable_rows = Dict ({}, sync = True )
578
+ _columns = Dict ({}). tag ( sync = True )
579
+ _editable_rows = Dict ({}). tag ( sync = True )
580
580
_filter_tables = Dict ({})
581
581
_sorted_column_cache = Dict ({})
582
- _interval_columns = List ([], sync = True )
582
+ _interval_columns = List ([]). tag ( sync = True )
583
583
_period_columns = List ([])
584
584
_string_columns = List ([])
585
585
_sort_helper_columns = Dict ({})
586
586
_initialized = Bool (False )
587
587
_ignore_df_changed = Bool (False )
588
588
_unfiltered_df = Instance (pd .DataFrame )
589
- _index_col_name = Unicode ('qgrid_unfiltered_index' , sync = True )
589
+ _index_col_name = Unicode ('qgrid_unfiltered_index' ). tag ( sync = True )
590
590
_sort_col_suffix = Unicode ('_qgrid_sort_column' )
591
- _multi_index = Bool (False , sync = True )
591
+ _multi_index = Bool (False ). tag ( sync = True )
592
592
_edited = Bool (False )
593
593
_selected_rows = List ([])
594
594
_viewport_range = Tuple (Integer (),
595
595
Integer (),
596
- default_value = (0 , 100 ),
597
- sync = True )
598
- _df_range = Tuple (Integer (), Integer (), default_value = (0 , 100 ), sync = True )
599
- _row_count = Integer (0 , sync = True )
600
- _sort_field = Any (None , sync = True )
601
- _sort_ascending = Bool (True , sync = True )
596
+ default_value = (0 , 100 ).tag (sync = True )
597
+ _df_range = Tuple (Integer (), Integer (), default_value = (0 , 100 )).tag (sync = True )
598
+ _row_count = Integer (0 ).tag (sync = True )
599
+ _sort_field = Any (None ).tag (sync = True )
600
+ _sort_ascending = Bool (True ).tag (sync = True )
602
601
_handlers = Instance (_EventHandlers )
603
602
604
603
df = Instance (pd .DataFrame )
605
- precision = Integer (6 , sync = True )
604
+ precision = Integer (6 ). tag ( sync = True )
606
605
grid_options = Dict (sync = True )
607
606
column_options = Dict ({})
608
607
column_definitions = Dict ({})
609
608
row_edit_callback = Instance (FunctionType , sync = False , allow_none = True )
610
- show_toolbar = Bool (False , sync = True )
609
+ show_toolbar = Bool (False ). tag ( sync = True )
611
610
id = Unicode (sync = True )
612
611
613
612
def __init__ (self , * args , ** kwargs ):
0 commit comments