diff --git a/web_drop_target/README.rst b/web_drop_target/README.rst index f4549ef3..66d085ac 100644 --- a/web_drop_target/README.rst +++ b/web_drop_target/README.rst @@ -30,6 +30,7 @@ Known issues / Roadmap * dropping on list or kanban views would be nice too * handle multiple files * add an upload progress meter for huge files +* trigger custom events about different stages of the drop operation for other addons to hook in Bug Tracker =========== diff --git a/web_widget_timepicker/README.rst b/web_widget_timepicker/README.rst index 0d05f34d..d7fc5b89 100644 --- a/web_widget_timepicker/README.rst +++ b/web_widget_timepicker/README.rst @@ -54,7 +54,7 @@ See the available options at `jquery-timepicker `_. plugin by Jon Thornton. This software is made available under the open source MIT License. © 2014 Jon Thornton and contributors +* The module uses the `jquery-timepicker plugin `_ by Jon Thornton. This software is made available under the open source MIT License. © 2014 Jon Thornton and contributors * Odoo Community Association (OCA) @@ -79,4 +79,4 @@ 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 https://odoo-community.org. \ No newline at end of file +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_widget_x2many_2d_matrix/README.rst b/web_widget_x2many_2d_matrix/README.rst index d81d100c..fd6b708a 100644 --- a/web_widget_x2many_2d_matrix/README.rst +++ b/web_widget_x2many_2d_matrix/README.rst @@ -9,12 +9,14 @@ This module allows to show an x2many field with 3-tuples ($x_value, $y_value, $value) in a table -========= =========== =========== -\ $x_value1 $x_value2 -========= =========== =========== -$y_value1 $value(1/1) $value(2/1) -$y_value2 $value(1/2) $value(2/2) -========= =========== =========== ++-----------+-------------+-------------+ +| | $x_value1 | $x_value2 | ++-----------+-------------+-------------+ +| $y_value1 | $value(1/1) | $value(2/1) | ++-----------+-------------+-------------+ +| $y_value2 | $value(1/2) | $value(2/2) | ++-----------+-------------+-------------+ + where `value(n/n)` is editable. @@ -145,12 +147,12 @@ Known issues / Roadmap * If you pass values with an onchange, you need to overwrite the model's method `onchange` for making the widget work:: - @api.multi - def onchange(self, values, field_name, field_onchange): - if "one2many_field" in field_onchange: - for sub in []: - field_onchange.setdefault("one2many_field." + sub, u"") - return super(model, self).onchange(values, field_name, field_onchange) + @api.multi + def onchange(self, values, field_name, field_onchange): + if "one2many_field" in field_onchange: + for sub in []: + field_onchange.setdefault("one2many_field." + sub, u"") + return super(model, self).onchange(values, field_name, field_onchange) Bug Tracker ===========