DevExtreme 15.1.5
HTML
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/globalize/0.1.1/globalize.min.js"></script>
<script src="http://knockoutjs.com/downloads/knockout-3.2.0.js"></script>
<script src="http://cdn3.devexpress.com/jslib/15.1.5/js/dx.all.js"></script>
<link rel="stylesheet" href="http://cdn3.devexpress.com/jslib/15.1.5/css/dx.common.css">
<link rel="stylesheet" href="http://cdn3.devexpress.com/jslib/15.1.5/css/dx.light.css">
<div data-bind="dxSlideOut: { dataSource: musteriNavItems, height: 300, menuTemplate: 'menuItem'}">
<div data-options="dxTemplate:{ name:'menuItem' }">
<span data-bind="attr: {'class': 'dx-icon-' + icon}"></span>
<span data-bind="text: text"></span>
</div>
</div>
JavaScript
ko.applyBindings({
musteriNavItems: [
{ action: "Profil", icon: "airplane", text: "Profil" },
{ icon: "info", text: "Çıkış" }
]
});