@@ -366,6 +366,7 @@ def update_settings(self, **updates):
366366 * hide_header_menu - if true, this will hide the header menu from the screen
367367 * hide_main_menu - if true, this will hide the main menu from the screen
368368 * hide_column_menus - if true, this will hide the column menus from the screen
369+ * hide_row_expanders - if true, this will hide row expanders from the screen
369370 * enable_custom_filters - if True, allow users to specify custom filters from the UI using pandas.query strings
370371 * enable_web_uploads - if True, allow users to upload files using URLs from the UI
371372
@@ -938,6 +939,7 @@ def startup(
938939 hide_header_menu = None ,
939940 hide_main_menu = None ,
940941 hide_column_menus = None ,
942+ hide_row_expanders = None ,
941943 enable_custom_filters = None ,
942944 enable_web_uploads = None ,
943945 force_save = True ,
@@ -1069,6 +1071,7 @@ def startup(
10691071 hide_header_menu = hide_header_menu ,
10701072 hide_main_menu = hide_main_menu ,
10711073 hide_column_menus = hide_column_menus ,
1074+ hide_row_expanders = hide_row_expanders ,
10721075 enable_custom_filters = enable_custom_filters ,
10731076 enable_web_uploads = enable_web_uploads ,
10741077 main_title = main_title ,
@@ -1144,6 +1147,7 @@ def startup(
11441147 hide_header_menu = hide_header_menu ,
11451148 hide_main_menu = hide_main_menu ,
11461149 hide_column_menus = hide_column_menus ,
1150+ hide_row_expanders = hide_row_expanders ,
11471151 enable_custom_filters = enable_custom_filters ,
11481152 enable_web_uploads = enable_web_uploads ,
11491153 main_title = main_title ,
@@ -1215,6 +1219,8 @@ def startup(
12151219 base_settings ["hide_main_menu" ] = hide_main_menu
12161220 if hide_column_menus is not None :
12171221 base_settings ["hide_column_menus" ] = hide_column_menus
1222+ if hide_row_expanders is not None :
1223+ base_settings ["hide_row_expanders" ] = hide_row_expanders
12181224 if enable_custom_filters is not None :
12191225 base_settings ["enable_custom_filters" ] = enable_custom_filters
12201226 if enable_web_uploads is not None :
@@ -1317,6 +1323,7 @@ def base_render_template(template, data_id, **kwargs):
13171323 hide_header_menu = global_state .load_flag (data_id , "hide_header_menu" , False )
13181324 hide_main_menu = global_state .load_flag (data_id , "hide_main_menu" , False )
13191325 hide_column_menus = global_state .load_flag (data_id , "hide_column_menus" , False )
1326+ hide_row_expanders = global_state .load_flag (data_id , "hide_row_expanders" , False )
13201327 main_title = global_state .load_flag (data_id , "main_title" , None )
13211328 main_title_font = global_state .load_flag (data_id , "main_title_font" , None )
13221329 enable_custom_filters = global_state .load_flag (
@@ -1331,6 +1338,7 @@ def base_render_template(template, data_id, **kwargs):
13311338 hide_header_menu = hide_header_menu ,
13321339 hide_main_menu = hide_main_menu ,
13331340 hide_column_menus = hide_column_menus ,
1341+ hide_row_expanders = hide_row_expanders ,
13341342 enable_custom_filters = enable_custom_filters ,
13351343 enable_web_uploads = enable_web_uploads ,
13361344 github_fork = github_fork ,
0 commit comments