Is there possible turning a data table into a form. Or, shift my form into data table in the same windows. Because my data extracted from web site had successfully insert into data table, I hope to show these data, and have further action in these data. Thanks!
Yes this is possible!
A nice way to display data from the DataTables is to use the DataGrid component. Shaun did some great tutorials on this.
Please see these tutorials and let us know how you do.
Hi, I try many times following the tutorial, but I failed, no data shows up in my data grid.
my app link is here: https://anvil.works/build#app:YNEC5VYRXFWC5ZRY
Do you mind review my code? test input: âone wayâ-â2019-04-08â-âSHHâ-âTJPâ-âADULTâ
I can take a look. Could you reshare that app link?
For some reason the link doesnât prompt me to clone the app. If you have not done so already, you can clone apps by following these instructions:
Please delete the link after you got it.
Actually, Iâll need the clone/copy link for the app so I can see the code. If you look at the above instructions you should find the right link, then Iâll be able to help.
Remove one of the =
signs in the following line so that you are assigning rather than testing for equality.
self.repeating_panel_1.items ==anvil.server.call('get_data')
Should be:
self.repeating_panel_1.items=anvil.server.call('get_data')
sorry, waste your a lot time. there are as well other case sensitive problem leading this issue. Now it works well! Thanks so much!