Attach to toolbar
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Attach to toolbar</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 myToolbar;
var myPop;
function doOnLoad() {
myToolbar = new dhtmlXToolbarObject({
parent: "myToolbar",
icons_path: "../common/imgs/",
xml: "../common/toolbar.xml",
onload: function() {
myToolbar.setItemText("workbut", "Click me!");
myPop = new dhtmlXPopup({ toolbar: myToolbar, id: "workbut"});
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="myToolbar"></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.