Get Item Data
Click on any item in attached list
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Get Item Data</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>
<style>
#myToolbar {
margin: 10px;
}
#eLog {
position: relative;
height: 200px;
width: auto;
overflow: auto;
border: 1px solid #dfdfdf;
font-family: Roboto, Arial, Helvetica;
font-size: 14px;
color: #404040;
margin: 100px 10px 10px 10px;
padding: 2px;
}
</style>
<script>
var myToolbar;
var myPop;
var eLog;
var eCount = 0;
function doOnLoad() {
myToolbar = new dhtmlXToolbarObject({
parent: "myToolbar",
icons_path: "../common/imgs/",
xml: "../common/toolbar.xml",
onload: function() {
myToolbar.setItemText("workbut", "List");
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"}
]);
myPop.attachEvent("onClick", function(id){
var t = [];
var data = myPop.getItemData(id);
for (var a in data) t.push(a+': "'+data[a]+'"');
eLog.innerHTML = (++eCount)+": clicked item data: { "+t.join(", ")+" }<br>"+eLog.innerHTML;
eLog.scrollTop = 0;
});
}
});
eLog = document.getElementById("eLog");
}
</script>
</head>
<body onload="doOnLoad()">
<div id="myToolbar"></div>
<div id="eLog">
<br>Click on any item in attached list<br>
</div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.