Enable / Disable
Slider 1
Slider 2
Slider 3
Slider 4
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Enable / Disable</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/fonts/font_roboto/roboto.css"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script>
var myRibbon;
function doOnLoad() {
myRibbon = new dhtmlXRibbon({
parent: "ribbonObj",
icons_path: "../common/",
json: "../common/slider.json"
});
};
function doOnUnload() {
if (myRibbon) {
myRibbon.unload();
myRibbon = null;
}
};
function disable(id) {
myRibbon.disable(id);
};
function enable(id) {
myRibbon.enable(id);
};
</script>
</head>
<body onload="doOnLoad();" onunload="doOnUnload();">
<div id="ribbonObj"></div>
<div>Slider 1 <button onclick="disable('slider_1')">disable</button> <button onclick="enable('slider_1')">enable</button></div>
<div>Slider 2 <button onclick="disable('slider_2')">disable</button> <button onclick="enable('slider_2')">enable</button></div>
<div>Slider 3 <button onclick="disable('slider_3')">disable</button> <button onclick="enable('slider_3')">enable</button></div>
<div>Slider 4 <button onclick="disable('slider_4')">disable</button> <button onclick="enable('slider_4')">enable</button></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.