Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: status/subscriptions - show the hexa id
  • Loading branch information
perexg committed May 7, 2015
1 parent c05806c commit fdc2f0a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/webui/static/app/status.js
Expand Up @@ -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',
Expand Down

0 comments on commit fdc2f0a

Please sign in to comment.