i need to know how i can create dynamic textbox or add textbox in listview for example i have one textbox and button when i click on button another textbox should add down below or how i can add some thing in textbox and display in listview. Here is one image down below for example, i need something similar to be done.
2nd thing thing i need to know how i can save a listview data in database (sql server) using webapi. I could save data from xamarin but with single textbox, i need to know how i can save listview data save in table at same time.
@veezo2007pk You don't add TextBox to a ListView. You will create a ViewCell that embeds a TextView then add this ViewCell to the ItemTemplate of the ListView. Then you just add an item to the ListView.
You should check the ListView description and its usage here.
Answers
@veezo2007pk You don't add TextBox to a ListView. You will create a ViewCell that embeds a TextView then add this ViewCell to the ItemTemplate of the ListView. Then you just add an item to the ListView.
You should check the ListView description and its usage here.