Mini Kabibi Habibi
window.DXSK8 = window.DXSK8 || {};
window.DXSK8.Phone = window.DXSK8.Phone || {};
window.DXSK8.Phone.db = window.DXSK8.Phone.db || {};
(function() {
var db = {};
db.getProductDataSource = function() {
return DXSK8.db.Products.toDataSource({
select: ["Type.Id", "Name", "Description"],
pageSize: 10,
map: mapProducts
});
};
function mapProducts(product) {
return {
imageClass: "type-" + product.Type.Id,
name: product.Name,
description: product.Description,
image: DXSK8.getElementImageUrl(product)
};
}
$.extend(DXSK8.Phone.db, db);
})();