Add tooltips to all buttons
This commit is contained in:
parent
1714d9b38b
commit
a18df3bc78
5 changed files with 14 additions and 1 deletions
|
@ -174,14 +174,18 @@ tvheadend.acleditor = function() {
|
|||
cm: cm,
|
||||
selModel: new Ext.grid.RowSelectionModel({singleSelect:false}),
|
||||
tbar: [{
|
||||
tooltip: 'Create a new access list entry on the server. ' +
|
||||
'The new entry is initially disabled so it must be enabled before it start taking effect.',
|
||||
iconCls:'add',
|
||||
text: 'Add entry',
|
||||
handler: addRecord
|
||||
}, '-', {
|
||||
tooltip: 'Delete one or more selected rows',
|
||||
iconCls:'remove',
|
||||
text: 'Delete selected',
|
||||
handler: delSelected
|
||||
}, '-', {
|
||||
tooltip: 'Save any changes made (Changed cells have red borders).',
|
||||
iconCls:'save',
|
||||
text: "Save changes",
|
||||
handler: saveChanges
|
||||
|
|
|
@ -207,10 +207,12 @@ tvheadend.channeldetails = function(chid, chname) {
|
|||
title: chname,
|
||||
border:false,
|
||||
tbar: [{
|
||||
tooltip: 'Delete channel "' + chname + '". All mapped transports will be unmapped',
|
||||
iconCls:'remove',
|
||||
text: "Delete channel",
|
||||
handler: deleteChannel
|
||||
}, '-', {
|
||||
tooltip: 'Save changes made to channel configuration below and the mapped transports',
|
||||
iconCls:'save',
|
||||
text: "Save configuration",
|
||||
handler: saveChanges
|
||||
|
|
|
@ -161,14 +161,18 @@ tvheadend.cwceditor = function() {
|
|||
cm: cm,
|
||||
selModel: new Ext.grid.RowSelectionModel({singleSelect:false}),
|
||||
tbar: [{
|
||||
tooltip: 'Create a new code word connection entry on the server. ' +
|
||||
'The new entry is initially disabled so it must be enabled before it start taking effect.',
|
||||
iconCls:'add',
|
||||
text: 'Add entry',
|
||||
handler: addRecord
|
||||
}, '-', {
|
||||
tooltip: 'Delete one or more selected rows',
|
||||
iconCls:'remove',
|
||||
text: 'Delete selected',
|
||||
handler: delSelected
|
||||
}, '-', {
|
||||
tooltip: 'Save any changes made (Changed cells have red borders).',
|
||||
iconCls:'save',
|
||||
text: "Save changes",
|
||||
handler: saveChanges
|
||||
|
|
|
@ -128,14 +128,17 @@ tvheadend.dvb_adapterdetails = function(adapterId, adapterName, treenode) {
|
|||
})
|
||||
],
|
||||
tbar:[{
|
||||
tooltip: 'Manually add new transport multiplexes',
|
||||
iconCls:'add',
|
||||
text: 'Add mux(es)',
|
||||
handler: addmux
|
||||
}, '-', {
|
||||
tooltip: 'Scan all transports on this adapter and map those who has a working video stream to a channel',
|
||||
iconCls:'option',
|
||||
text: 'Probe services',
|
||||
handler: probeservices
|
||||
}, '-', {
|
||||
tooltip: 'Save and changes made to the configuation below',
|
||||
iconCls:'save',
|
||||
text: 'Save configuration',
|
||||
handler: saveconfig
|
||||
|
|
|
@ -128,7 +128,7 @@ tvheadend.app = function() {
|
|||
});
|
||||
|
||||
new tvheadend.comet_poller;
|
||||
|
||||
Ext.QuickTips.init();
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue