mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
Add incremental grid loading option to notebooks (#16577)
* render grids incrementally * add loading spinner * fix loading animation * move rendergrids to notebook editor component * add setting for incremental grid loading * check configuration * just use setTimeout to queue grids * remove extra line * add setter/getter for isloading * add comment
This commit is contained in:
@@ -340,6 +340,11 @@ configurationRegistry.registerConfiguration({
|
||||
'type': 'boolean',
|
||||
'default': false,
|
||||
'description': localize('notebook.useAbsoluteFilePaths', "Use absolute file paths when linking to other notebooks.")
|
||||
},
|
||||
'notebook.enableIncrementalGridRendering': {
|
||||
'type': 'boolean',
|
||||
'default': false,
|
||||
'description': localize('notebook.enableIncrementalGridRendering', "Enable incremental grid rendering for notebooks. This will improve the initial rendering time for large notebooks. There may be performance issues when interacting with the notebook while the rest of the grids are rendering.")
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user