/Src/WS.EKA.Portal/Scripts/models/myFilter.js
http://mobileshop.codeplex.com · JavaScript · 50 lines · 41 code · 9 blank · 0 comment · 2 complexity · 50cb7777b89a56d93b990726b56ee7be MD5 · raw file
- window.FilterModel = Backbone.Model.extend({
- });
- window.BrandModel = Backbone.Model.extend({});
- window.BrandList = Backbone.Collection.extend({
- model: BrandModel,
- urlRoot: 'api/product/brandlist/',
- url: function () {
- return this.urlRoot + localStorage.getItem('nextid_1');//fetch brand according to category1
- }
- });
- window.MyFilterView = Backbone.View.extend({
- el: '#jqt',
- initialize: function () {
- this.template = $('#MyFilterTemplate').html();
- this.brandlist = new BrandList();
- },
- render: function () {
- var partial = { header: $('#HeaderTemplate').html(), footer: $('#FooterTemplate').html(),
- innerFooter: $('#InnerFooterTemplate').html()
- };
- var data = { hasBack: true, title: "??", btnListR: [{ name: 'sort' }, { name: 'cart' }, { name: 'home'}] };
- this.$el.append(Mustache.render(this.template, data, partial));
- this.fetchBrands();
- return this;
- },
- fetchBrands: function () {
- var that = this;
- this.brandlist.fetch({
- success: function () {
- if (that.brandlist.length > 0) {
- var template = $('#BrandFilterTemplate').html(),
- data = { brands: that.brandlist.toJSON() };
- $('.brandFilter').html(Mustache.render(template, data, []));
- } else {
- $('.brandFilter').hide(); $('.priceFilter').hide();
- }
- pageView.resizeScroll();
- }
- });
- }
- });