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
Is there a way to force the table to re-render a single (specified) row? Usecase is that I'm keeping track of rows that a user "bookmarks", and would like to apply a custom style to those rows. The style is currently applied by overriding get_row_style, which is called after a couple of layers of caching. Is there an easy way to either clear a specific row from those caches, or to force-recompute a single row?
The text was updated successfully, but these errors were encountered:
The tricky part is that you actually need to delete a whole bunch of records in the row cache, since there may be multiple cache entries with different cursor positions, etc. Hence, I think it's probably better to just delete the cache entirely.
Is there a way to force the table to re-render a single (specified) row? Usecase is that I'm keeping track of rows that a user "bookmarks", and would like to apply a custom style to those rows. The style is currently applied by overriding
get_row_style
, which is called after a couple of layers of caching. Is there an easy way to either clear a specific row from those caches, or to force-recompute a single row?The text was updated successfully, but these errors were encountered: