forked from Techsystech/web
parent
3c1af55672
commit
8541d5620d
|
@ -0,0 +1,59 @@
|
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:alt: License: AGPL-3
|
||||
|
||||
====================
|
||||
Group Expand Buttons
|
||||
====================
|
||||
|
||||
A group by list can be expanded and collapased with buttons
|
||||
|
||||
You'll see two buttons appear on top right corner of the list when you perform
|
||||
a group by with which you can expand and collapse grouped records by level.
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/162/8.0
|
||||
|
||||
For further information, please visit:
|
||||
|
||||
* https://www.odoo.com/forum/help-1
|
||||
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
|
||||
`here <https://github.com/OCA/web/issues/new?body=module:%20web_group_expand%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Mantavya Gajjar <mga@openerp.com>
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Pedro Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
|
|
@ -1,19 +1,19 @@
|
|||
{
|
||||
"name" : "Group Expand Buttons",
|
||||
"category": "Hidden",
|
||||
"version" : '1.0',
|
||||
"author" : 'OpenERP SA',
|
||||
"description":
|
||||
"""
|
||||
A group by list can be expanded and collapased with buttons
|
||||
===============================================================
|
||||
You'll see two buttons appear on top right corner of the list when you perform a group by with which you can expand and collapse grouped records by level.
|
||||
""",
|
||||
"depends" : ["web"],
|
||||
"js": ["static/src/js/web_group_expand.js"],
|
||||
'qweb' : ["static/src/xml/expand_buttons.xml"],
|
||||
'css' : ["static/src/css/expand_buttons.css"],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
"name": "Group Expand Buttons",
|
||||
"category": "Web",
|
||||
"version": "1.0",
|
||||
"author": "OpenERP SA, "
|
||||
"AvanzOSC, "
|
||||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"depends": [
|
||||
"web"
|
||||
],
|
||||
"qweb": [
|
||||
"static/src/xml/expand_buttons.xml",
|
||||
],
|
||||
"data": [
|
||||
"views/templates.xml",
|
||||
],
|
||||
"installable": True,
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 78 KiB |
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -1,24 +0,0 @@
|
|||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<div class="oe_span12">
|
||||
<h2 class="oe_slogan">Expand and Collapse Group By</h2>
|
||||
<h3 class="oe_slogan">A group by list can be expanded and collapased with buttons</h3>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<div class="oe_demo oe_picture oe_screenshot">
|
||||
<a href="https://www.openerp.com">
|
||||
<img src="expand_list.png">
|
||||
</a>
|
||||
<div class="oe_demo_footer oe_centeralign">Online Demo</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
You'll see two buttons <img src="icon.png" width="50" height="35"> appear on top right corner of the list when you perform a group by with which you can expand and collapse grouped records by level.
|
||||
</p>
|
||||
<div class="oe_centeralign oe_websiteonly">
|
||||
<a href="mailto:sales@openerp.com" class="oe_button oe_big oe_tacky">Contact Us</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
|
@ -1,18 +1,8 @@
|
|||
|
||||
.openerp ul#oe_group_by li.oe_group_expand{
|
||||
border: none;
|
||||
border-top: 1px solid #ababab;
|
||||
position:relative;
|
||||
font-size:13px;
|
||||
transform: rotate(90deg);
|
||||
-webkit-transform: rotate(90deg);
|
||||
line-height: 25px;
|
||||
}
|
||||
.openerp hr.oe_expand_button_hr{
|
||||
height:2px;
|
||||
visibility:hidden;
|
||||
margin-bottom:-7px;
|
||||
}
|
||||
.openerp #oe_group_by_reset {
|
||||
top:3px;
|
||||
position:relative;
|
||||
.openerp .fa-expand, .openerp .fa-compress {
|
||||
font-size:15px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
"use strict";
|
||||
openerp.web_group_expand = function(openerp) {
|
||||
var QWeb = openerp.web.qweb;
|
||||
openerp.web.ViewManager.include({
|
||||
|
@ -19,7 +20,7 @@ openerp.web_group_expand = function(openerp) {
|
|||
expand: function(domains, contexts, groupbys) {
|
||||
this.$el.find("ul#oe_group_by").remove();
|
||||
if(groupbys.length && this.active_view == 'list') {
|
||||
this.load_expand_buttons();
|
||||
this.load_expand_buttons();
|
||||
this.$el.find("a#oe_group_by_reset").click(function(){
|
||||
$('span.ui-icon-triangle-1-s').click()
|
||||
});
|
||||
|
@ -34,8 +35,8 @@ openerp.web_group_expand = function(openerp) {
|
|||
this.$el.find("ul.oe_view_manager_switch.oe_button_group.oe_right").before(this.$ExpandButtons);
|
||||
},
|
||||
setup_search_view: function(view_id, search_defaults) {
|
||||
self = this;
|
||||
res = this._super.apply(this, arguments);
|
||||
var self = this;
|
||||
var res = this._super.apply(this, arguments);
|
||||
this.searchview.on('search_data', self, this.expand);
|
||||
return res
|
||||
},
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- vim:fdl=1:
|
||||
-->
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-name="GroupExpand.Buttons">
|
||||
<div class="oe_list_buttons"><ul id="oe_group_by" class="oe_view_manager_switch oe_button_group oe_right"><li class="oe_i oe_group_expand"><a id="oe_group_by_expand"><hr class="oe_expand_button_hr"/>( )</a></li><li class="oe_i"><a id="oe_group_by_reset">P</a></li></ul></div>
|
||||
<div class="oe_list_buttons">
|
||||
<ul id="oe_group_by" class="oe_view_manager_switch oe_button_group oe_right">
|
||||
<li class="oe_group_expand"><a id="oe_group_by_expand"><i class="fa fa-expand" id="expand_icon" /></a></li>
|
||||
<li class="oe_group_expand"><a id="oe_group_by_reset"><i class="fa fa-compress" id="compress_icon" /></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<template id="assets_backend" name="web_groupby_expand assets" inherit_id="web.assets_backend">
|
||||
<xpath expr="." position="inside">
|
||||
<script type="text/javascript" src="/web_group_expand/static/src/js/web_group_expand.js"></script>
|
||||
<link rel="stylesheet" href="/web_group_expand/static/src/css/expand_buttons.css"/>
|
||||
</xpath>
|
||||
</template>
|
||||
</data>
|
||||
</openerp>
|
Loading…
Reference in New Issue