Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXTREME 13.1 Demos/DXSK8/DXSK8.Phone/views/
Upload File :
Current File : C:/Users/Public/Documents/DXTREME 13.1 Demos/DXSK8/DXSK8.Phone/views/ProductLookup.dxview

<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>