From 522bb1d3685e9ed8f180a55c1fe5ec2602133871 Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Tue, 12 Mar 2013 15:51:05 +0100 Subject: [PATCH] biglist can handle long ids. fix #2580 --- wcs/qommon/static/js/biglist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcs/qommon/static/js/biglist.js b/wcs/qommon/static/js/biglist.js index 948be082a..b382f2240 100644 --- a/wcs/qommon/static/js/biglist.js +++ b/wcs/qommon/static/js/biglist.js @@ -14,7 +14,7 @@ $(document).ready( for (i=0; i < items.length; i++) { item = items[i]; // 6 is length of 'itemId' - result += item.id.substr(7, 9) + ';'; + result += item.id.substr(7, 30) + ';'; } $.post('update_order', {'order': result}, function(data) { $('ul.biglist').Highlight(500, '#ff8'); });