Skip to content

Commit

Permalink
Table cell style not applied when columns refreshed with rebuild=True (
Browse files Browse the repository at this point in the history
…#2171)

* Table cell style not applied when columns refreshed with rebuild=True
resolves #2005

* add format_fn property
make the list a set

---------

Co-authored-by: Fred Lefévère-Laoide <[email protected]>
  • Loading branch information
FredLL-Avaiga and Fred Lefévère-Laoide authored Oct 28, 2024
1 parent 94dcf55 commit 3e9da71
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions taipy/gui/_renderers/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _Builder:

__BLOCK_CONTROLS = ["dialog", "expandable", "pane", "part"]

__TABLE_COLUMNS_DEPS = [
__TABLE_COLUMNS_DEPS = {
"data",
"columns",
"date_format",
Expand All @@ -75,7 +75,10 @@ class _Builder:
"style",
"tooltip",
"lov",
]
"row_class_name",
"cell_class_name",
"format_fn"
}

def __init__(
self,
Expand Down

0 comments on commit 3e9da71

Please sign in to comment.