So this is my problem. I want to copy a specific row value from listView to another. For example;
listview1 listview2
Product Price Product Price QTY
Apple 5
Orange 5
then when I press "Apple" it will copy to listview2, like this;
listview1 listview2
Product Price Product Price QTY
Apple 5 Apple 5
Orange 5
Also I'm using click event. TIA!