Mini Kabibi Habibi
<div data-options="dxView : { name: 'ProductLookup', title: 'Product Lookup' } " >
<div class="product-lookup" data-options="dxContent : { targetPlaceholder: 'content' } " >
<div data-bind="dxTextBox: { mode: 'text', value: productName, valueUpdateEvent: 'keyup' }"></div>
<div data-bind="dxList: { dataSource: products, pullRefreshEnabled: true }">
<div data-options="dxTemplate : { name: 'item' } " >
<div class="list-item-image-placeholder image">
<img data-bind="attr: { 'src': $data.image, 'class': imageClass }" />
</div>
<div class="list-item-content">
<span data-bind="text: name"></span>
</div>
</div>
</div>
</div>
</div>