PDA

View Full Version : Use Drag and Drop to re-order items in a list



hmischel@diligentsystems.com
2015-03-16, 21:56
Hi,

Here is a quick example of dragging and dropping items in a list.
It's really easy, you just open your table and populate the list items.

I haven't got the refresh working just right, so I will wait to post the code until I have that sorted out.

You can look at the example here.

https://www.youtube.com/watch?v=9Vswi2GkcHw&feature=youtu.be

Herb

hmischel@diligentsystems.com
2015-03-17, 22:50
Refresh is now working in v1.4.

First run this in the console to add the rank column to employees

open database southwind
use employees in 0
select employees
alter table employees add column rank int
index on rank tag rank

Here is the code for the app.

Herb