Replies: 1 comment 2 replies
-
https://github.com/StanMathers/simple-datatable |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to upload excel and display the data table., but I'm not sure how to implement it.
In this case,
I guess you need to use pandas to read excel data but I'm not sure if it's impossible to do what I want in Flet.
Firstly, import flet and pandas.
upload excel with FilePicker component , and read uploaded excel data like below
myexcel=pd.read_excel("fakedata.xlsx")
then show the data with Datatable component.
I imagine you can do like this however, how do I get the data of excel file with FilePicker?
I'd like to know how to pass excel data to Datatable like below.
I tried it but I couldn't figure out. Do you have any ideas?
I'd appreciate it if you could give me any sample.
Beta Was this translation helpful? Give feedback.
All reactions