You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we bind the rows to some external property and modify the values, the table does not refresh. Looking at the code, there seems to be no reactive code block to handle changes to the data after initialization.
let data = [ ..default items ...]
...
// async load and update of 'data' - say during the onMount() event
//....
<SimpleTable bind:data {columnSettings} {tableSettings} />
// Table still shows the 'default items'
The text was updated successfully, but these errors were encountered:
If we bind the rows to some external property and modify the values, the table does not refresh. Looking at the code, there seems to be no reactive code block to handle changes to the data after initialization.
The text was updated successfully, but these errors were encountered: