From: Jaroslav Kysela Date: Thu, 7 May 2015 19:57:23 +0000 (+0200) Subject: WEBUI: status/subscriptions - show the hexa id X-Git-Tag: v4.1~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdc2f0a6710ebde3a8ce14e6e4912108c7ddbf30;p=thirdparty%2Ftvheadend.git WEBUI: status/subscriptions - show the hexa id --- diff --git a/src/webui/static/app/status.js b/src/webui/static/app/status.js index 356cb3373..cfeb6e363 100644 --- a/src/webui/static/app/status.js +++ b/src/webui/static/app/status.js @@ -68,6 +68,16 @@ tvheadend.status_subs = function(panel, index) } var subsCm = new Ext.grid.ColumnModel([ + { + width: 50, + id: 'id', + header: "Id", + dataIndex: 'id', + renderer: function(v) { + return ("0000000" + v.toString(16).toUpperCase()).substr(-8); + } + + }, { width: 50, id: 'hostname',