The dataBound event can be wired up by data attribute but dataBinding cannot. Why?
<ul data-role="listview" data-bind="source: exampleData" data-binding="onDataBinding" data-bound="onDataBound"></ul><script type="text/javascript"> function onDataBound (e) { console.log("this works"); } function onDataBinding (e) { console.log("this doesn't"); }</script>