python - How to overide web_kanban Js file to project_inherit? -
i customize number of items kanban view shows before user has click 'show more' button. in addons/web_kanban/static/src/js/kanban.js there following snippet of code: want example override js file customized module
instance.web_kanban.kanbanview = instance.web.view.extend({ template: "kanbanview", ... init: function (parent, dataset, view_id, options) { this._super(parent, dataset, view_id, options); ... this.limit = options.limit || 40; ... },
Comments
Post a Comment