|
|
|
@ -25,6 +25,7 @@ Ext.define('NgcpCsc.view.pages.callforward.CallForwardTimesetGrid', {
|
|
|
|
|
flex: 1,
|
|
|
|
|
widget: {
|
|
|
|
|
xtype: 'timefield',
|
|
|
|
|
margin: '8 0 0 0',
|
|
|
|
|
tooltip: Ngcp.csc.locales.callforward.tooltips.change_time_from[localStorage.getItem('languageSelected')],
|
|
|
|
|
bind: {
|
|
|
|
|
value: '{record.time_from}'
|
|
|
|
@ -38,11 +39,20 @@ Ext.define('NgcpCsc.view.pages.callforward.CallForwardTimesetGrid', {
|
|
|
|
|
flex: 1,
|
|
|
|
|
widget: {
|
|
|
|
|
xtype: 'timefield',
|
|
|
|
|
margin: '8 0 0 0',
|
|
|
|
|
tooltip: Ngcp.csc.locales.callforward.tooltips.change_time_to[localStorage.getItem('languageSelected')],
|
|
|
|
|
bind: {
|
|
|
|
|
value: '{record.time_to}'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
xtype: 'actioncolumn',
|
|
|
|
|
width: 30,
|
|
|
|
|
items: [{
|
|
|
|
|
iconCls: Ngcp.csc.icons.trash,
|
|
|
|
|
tooltip: Ngcp.csc.locales.filters.tooltips.remove_entry[localStorage.getItem('languageSelected')],
|
|
|
|
|
handler: 'removePeriod'
|
|
|
|
|
}]
|
|
|
|
|
}]
|
|
|
|
|
};
|
|
|
|
|
this.callParent();
|
|
|
|
|