I want to display an editable table in an expandable in Taipy.
I tried the following code:
def get_table():
dic = {"key": [1,2,3], "Value":[3,4,5]}
return pd.DataFrame(dic)
table = get_table()
page_content = """
<|SHOW TABLE|expandable|
<|{table}|table|show_all|editable|>
|>
pages = {"Design": page_content}
gui = Gui(pages=pages)
gui.run()
I have two issues:
I cannot figure out how to solve these.Thank you for nay help.
For information I am using Python 3.10, Taipy 2.2.0, Chrome on windows 10.