Attach to ribbon
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Attach to ribbon</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;
var myPop;
function doOnLoad() {
myRibbon = new dhtmlXRibbon({
parent: "myRibbon",
icons_path: "../../../dhtmlxRibbon/samples/common/",
json: "../../../dhtmlxRibbon/samples/common/data_attached.json",
onload: function(){
myRibbon.setItemText("print_page_setup", "Popup here!");
myPop = new dhtmlXPopup({ ribbon: myRibbon, id: "print_page_setup"});
myPop.attachList("name,price", [
{id: 1, name: "Audi A5 Coupe", price: "€ 31,550"},
{id: 2, name: "Audi A5 Sportback", price: "€ 30,990"},
myPop.separator,
{id: 3, name: "Audi A6", price: "€ 30,990"},
{id: 4, name: "Audi A6 Avant", price: "€ 37,450"},
{id: 5, name: "Audi A6 Quattro", price: "€ 55,360"},
myPop.separator,
{id: 6, name: "Audi TT Coupe", price: "€ 29,830"},
{id: 7, name: "Audi TT RS Coupe", price: "€ 59,800"}
]);
}
});
}
</script>
</head>
<body onload="doOnLoad()">
<div id="myRibbon"></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.