#811 fixed columns in mongodb query

This commit is contained in:
Jan Prochazka 2024-06-03 12:43:59 +02:00
parent 64d9b26d79
commit ad6a22d2a6

View File

@ -72,6 +72,8 @@
export let selectedCellsPublished = () => [];
export const activator = createActivator('JslDataGridCore', false);
export let setLoadedRows;
let loadedRows = [];
let domGrid;
@ -189,6 +191,7 @@
function handleSetLoadedRows(rows) {
loadedRows = rows;
setLoadedRows?.(rows);
}
</script>