0
votes
1answer
64 views

Listview with checkbox: column order changes checkbox position

In C# Windows Forms I have a listview with the CheckBoxes property set to true and the AllowColumnReorder property set to true. The checkbox for each item is shown at the very left-hand side of the ...
0
votes
1answer
88 views

How to reorder subitems of a listviewitem?

so i've written a code that reorders the columns of a listview ( actually just -=1 and +=1's the display index of the selected listview column. But when i move the columns the subitems stay . they ...
0
votes
0answers
105 views

how to implement cwac-touchlist for a tree-map type data?

I'm a newbie for Android. I'm trying to reorder a set of data by dragNdrop the item. My data is a TreeMap<float, MyClass>, each item has a identical order which is its key in the map. When I ...
2
votes
2answers
254 views

How to make listview reorder itself when item is inserted

I have a list view in which I can insert items(the items are inserted in the database). The problem is that when I insert an item, it shows at the bottom of the list. How can I make it go to the right ...
5
votes
1answer
2k views

How can you manually reorder a ListView in Android?

I have a ListView in Android that needs to have the ability to be manually reordered. An example would be within Android's Music Player application, when you can change the order of tracks in a ...
0
votes
1answer
132 views

ReorderListView in WPF

I love the controls from the Bag-Of-Tricks. I am interested in modifying the ReorderListBox control to get a ReorderListView control. However, simply changing the base class from ListBox to ListView ...