$(function(){
$("#switch-on").dxSwitch({
value: true
});
$("#switch-off").dxSwitch({
value: false
});
$("#handler-switch").dxSwitch({
onValueChanged: function(data) {
disabledSwitch.option("value", data.value);
}
});
var disabledSwitch = $("#disabled").dxSwitch({
value: false,
disabled: true
}).dxSwitch("instance");
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.common.css" />
<link rel="dx-theme" data-theme="generic.light" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.light.css" />
<link rel="dx-theme" data-theme="android5.light" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.android5.light.css" />
<link rel="dx-theme" data-theme="ios7.default" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.ios7.default.css" />
<link rel="dx-theme" data-theme="win10.black" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.win10.black.css" />
<link rel="dx-theme" data-theme="win10.white" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.win10.white.css" />
<script src="https://cdn3.devexpress.com/jslib/18.2.6/js/dx.all.js"></script>
<link rel="stylesheet" type ="text/css" href ="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div class="form">
<div class="dx-fieldset">
<div class="dx-field">
<div class="dx-field-label">Switched on</div>
<div class="dx-field-value">
<div id="switch-on"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Switched off</div>
<div class="dx-field-value">
<div id="switch-off"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Value change handling</div>
<div class="dx-field-value">
<div id="handler-switch"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Disabled</div>
<div class="dx-field-value">
<div id="disabled"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>