您的位置:首页 > Web前端 > JavaScript

js

2016-07-22 11:00 447 查看
//radio_btn的定义
//***实时视频开关
// 开启实时视频
var realTimeVideoOpenRadio = new Ext.form.Radio({
boxLabel: '开启查看实时视频',
inputValue: '2',
listeners: {
'check': function () {
if (realTimeVideoOpenRadio.getValue()) {
realTimeVideoCloseRadio.setValue(false);
realTimeVideoOpenRadio.setValue(true);
}
}
}
});
//关闭实时视频
var realTimeVideoCloseRadio = new Ext.form.Radio({
boxLabel: '关闭查看实时视频',
inputValue: '4',
listeners: {
'check': function () {
if (realTimeVideoCloseRadio.getValue()) {
realTimeVideoOpenRadio.setValue(false);
realTimeVideoCloseRadio.setValue(true);
}
}
}
});

//***历史视频开关
// 开启历史视频
var historyVideoOpenRadio = new Ext.form.Radio({
boxLabel: '开启查看历史视频',
inputValue: '8',
listeners: {
'check': function () {
if (historyVideoOpenRadio.getValue()) {
historyVideoCloseRadio.setValue(false);
historyVideoOpenRadio.setValue(true);
}
}
}
});
//关闭历史视频
var historyVideoCloseRadio = new Ext.form.Radio({
boxLabel: '关闭查看历史视频',
inputValue: '16',
listeners: {
'check': function () {
if (historyVideoCloseRadio.getValue()) {
historyVideoOpenRadio.setValue(false);
historyVideoCloseRadio.setValue(true);
}
}
}
});

//***超流量实时视频开关
// 开启超流量实时视频
var exceedRealTimeVideoOpenRadio = new Ext.form.Radio({
boxLabel: '允许超流量查看实时视频',
inputValue: '32',
listeners: {
'check': function () {
if (exceedRealTimeVideoOpenRadio.getValue()) {
exceedRealTimeVideoCloseRadio.setValue(false);
exceedRealTimeVideoOpenRadio.setValue(true);
}
}
}
});
//关闭超流量实时视频
var exceedRealTimeVideoCloseRadio = new Ext.form.Radio({
boxLabel: '禁止超流量查看实时视频',
inputValue: '64',
listeners: {
'check': function () {
if (exceedRealTimeVideoCloseRadio.getValue()) {
exceedRealTimeVideoOpenRadio.setValue(false);
exceedRealTimeVideoCloseRadio.setValue(true);
}
}
}
});

//***超流量历史视频开关
// 开启超流量历史视频
var exceedHistoryVideoOpenRadio = new Ext.form.Radio({
boxLabel: '允许超流量查看历史视频',
inputValue: '128',
listeners: {
'check': function () {
if (exceedHistoryVideoOpenRadio.getValue()) {
exceedHistoryVideoCloseRadio.setValue(false);
exceedHistoryVideoOpenRadio.setValue(true);
}
}
}
});
//关闭超流量历史视频
var exceedHistoryVideoCloseRadio = new Ext.form.Radio({
boxLabel: '禁止超流量查看历史视频',
inputValue: '256',
listeners: {
'check': function () {
if (exceedHistoryVideoCloseRadio.getValue()) {
exceedHistoryVideoOpenRadio.setValue(false);
exceedHistoryVideoCloseRadio.setValue(true);
}
}
}
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Intellij IDEA