I have gone through the documentation and understood some bit so designed the UI accordingly for my requirement.
If we want to add more features to the listview that cant is easily done
Following is my code for ListView
And showing some actions on that ListView and the code look likes
Added two actions on each row like Edit Name and Delete buttons namely.
Also, I created the custom directives for delete and Edit
From doing this approach I can able to show the details on the ListView. When I click on the delete button which is located on each row I can get the corresponding row values like name, address and pin code of that user by using entry property.
I have created one more button SAVE on the listView.
Same like this now I want to get the Entire listview data into my custom directive when I click on the SAVE button. I tried using entry property but I can't. My ListView contains More than 20 rows.
@fzaninotto
I have gone through the documentation and understood some bit so designed the UI accordingly for my requirement.
If we want to add more features to the listview that cant is easily done
Following is my code for ListView
And showing some actions on that ListView and the code look likes
Added two actions on each row like
Edit Name
andDelete
buttons namely.Also, I created the custom directives for
delete
andEdit
From doing this approach I can able to show the details on the ListView. When I click on the delete button which is located on each row I can get the corresponding row values like name, address and pin code of that user by using
entry
property.I have created one more button
SAVE
on the listView.Same like this now I want to get the Entire listview data into my custom directive when I click on the
SAVE
button. I tried usingentry
property but I can't. My ListView contains More than 20 rows.can anyone help me to get this...Thanks!!