@@ -366,6 +366,7 @@ def update_settings(self, **updates):
366
366
* hide_header_menu - if true, this will hide the header menu from the screen
367
367
* hide_main_menu - if true, this will hide the main menu from the screen
368
368
* 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
369
370
* enable_custom_filters - if True, allow users to specify custom filters from the UI using pandas.query strings
370
371
* enable_web_uploads - if True, allow users to upload files using URLs from the UI
371
372
@@ -938,6 +939,7 @@ def startup(
938
939
hide_header_menu = None ,
939
940
hide_main_menu = None ,
940
941
hide_column_menus = None ,
942
+ hide_row_expanders = None ,
941
943
enable_custom_filters = None ,
942
944
enable_web_uploads = None ,
943
945
force_save = True ,
@@ -1069,6 +1071,7 @@ def startup(
1069
1071
hide_header_menu = hide_header_menu ,
1070
1072
hide_main_menu = hide_main_menu ,
1071
1073
hide_column_menus = hide_column_menus ,
1074
+ hide_row_expanders = hide_row_expanders ,
1072
1075
enable_custom_filters = enable_custom_filters ,
1073
1076
enable_web_uploads = enable_web_uploads ,
1074
1077
main_title = main_title ,
@@ -1144,6 +1147,7 @@ def startup(
1144
1147
hide_header_menu = hide_header_menu ,
1145
1148
hide_main_menu = hide_main_menu ,
1146
1149
hide_column_menus = hide_column_menus ,
1150
+ hide_row_expanders = hide_row_expanders ,
1147
1151
enable_custom_filters = enable_custom_filters ,
1148
1152
enable_web_uploads = enable_web_uploads ,
1149
1153
main_title = main_title ,
@@ -1215,6 +1219,8 @@ def startup(
1215
1219
base_settings ["hide_main_menu" ] = hide_main_menu
1216
1220
if hide_column_menus is not None :
1217
1221
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
1218
1224
if enable_custom_filters is not None :
1219
1225
base_settings ["enable_custom_filters" ] = enable_custom_filters
1220
1226
if enable_web_uploads is not None :
@@ -1317,6 +1323,7 @@ def base_render_template(template, data_id, **kwargs):
1317
1323
hide_header_menu = global_state .load_flag (data_id , "hide_header_menu" , False )
1318
1324
hide_main_menu = global_state .load_flag (data_id , "hide_main_menu" , False )
1319
1325
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 )
1320
1327
main_title = global_state .load_flag (data_id , "main_title" , None )
1321
1328
main_title_font = global_state .load_flag (data_id , "main_title_font" , None )
1322
1329
enable_custom_filters = global_state .load_flag (
@@ -1331,6 +1338,7 @@ def base_render_template(template, data_id, **kwargs):
1331
1338
hide_header_menu = hide_header_menu ,
1332
1339
hide_main_menu = hide_main_menu ,
1333
1340
hide_column_menus = hide_column_menus ,
1341
+ hide_row_expanders = hide_row_expanders ,
1334
1342
enable_custom_filters = enable_custom_filters ,
1335
1343
enable_web_uploads = enable_web_uploads ,
1336
1344
github_fork = github_fork ,
0 commit comments