id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
10128	drag and drop doesn't work	rulbrich@capsher.com	robguttman	The drag and drop feature doesn't work. I've tried IE9 and Chrome without success. Javascript is enabled and the jquery scripts seem to be downloaded correctly (according to the chrome developer tool). I'm running trac 0.12.2. QueuesPlugin 0.1.0 (r11706).\r\n\r\nHere are the relevant sections in my trac.ini:\r\n\r\n{{{\r\n[queues]\r\nreports = 9,10\r\n\r\n[ticket-custom]\r\nposition = text\r\neffort = select\r\neffort.options = 0-2|3-5|6-10|10+\r\neffort.value = 1\r\n\r\n}}}\r\n\r\n\r\nHere is my report definition (I am using an sqlite3 database):\r\n\r\n{{{\r\nSELECT p.value AS __color__,\r\n   cp.value AS position, id AS ticket, summary, component, version, milestone, t.type AS type, \r\n   owner, ce.value AS effort, status,\r\n   time AS created,\r\n   changetime AS _changetime, description AS _description,\r\n   reporter AS _reporter\r\n  FROM ticket t\r\n     LEFT OUTER JOIN ticket_custom cp ON (t.id = cp.ticket AND cp.name = 'position' )\r\n     LEFT OUTER JOIN ticket_custom ce ON (t.id = ce.ticket AND ce.name = 'effort' )\r\n     JOIN enum p ON p.name = t.priority AND p.type = 'priority'\r\n  WHERE status <> 'closed'\r\n  ORDER BY CAST((CASE p.value\r\n                   WHEN '' THEN '0'\r\n                   ELSE COALESCE(p.value,'0') END) AS INTEGER) ASC, milestone, t.type, time\r\n}}}\r\n	defect	closed	normal	QueuesPlugin	normal	fixed			0.12
