]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI: status/subscriptions - show the hexa id
authorJaroslav Kysela <perex@perex.cz>
Thu, 7 May 2015 19:57:23 +0000 (21:57 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 7 May 2015 19:57:23 +0000 (21:57 +0200)
src/webui/static/app/status.js

index 356cb3373a3a989675b23477b4d18ce1d778a8a5..cfeb6e3630267fd01396743b1d6c44d57f6bcebe 100644 (file)
@@ -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',