mirror of https://github.com/OCA/web.git
[IMP] use semantic css classes instead of element names
[RFR] and being on it, make reacting to changes in overrides simplepull/3048/head
parent
4bf864d35d
commit
c63fc194da
|
@ -308,30 +308,8 @@ openerp.web_widget_x2many_2d_matrix = function(instance)
|
||||||
start: function()
|
start: function()
|
||||||
{
|
{
|
||||||
var self = this;
|
var self = this;
|
||||||
this.$el.find('input').on(
|
this.$el.find('.edit').on(
|
||||||
'change',
|
'change', self.proxy(this.xy_value_change));
|
||||||
function()
|
|
||||||
{
|
|
||||||
var $this = jQuery(this),
|
|
||||||
val = $this.val()
|
|
||||||
if(self.validate_xy_value(val))
|
|
||||||
{
|
|
||||||
var data = {}, value = self.parse_xy_value(val);
|
|
||||||
data[self.field_value] = value;
|
|
||||||
|
|
||||||
$this.siblings('span').text(self.format_xy_value(value));
|
|
||||||
$this.val(self.format_xy_value(value));
|
|
||||||
|
|
||||||
self.dataset.write($this.data('id'), data);
|
|
||||||
$this.parent().removeClass('oe_form_invalid');
|
|
||||||
self.compute_totals();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$this.parent().addClass('oe_form_invalid');
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
this.compute_totals();
|
this.compute_totals();
|
||||||
this.setup_many2one_axes();
|
this.setup_many2one_axes();
|
||||||
this.on("change:effective_readonly",
|
this.on("change:effective_readonly",
|
||||||
|
@ -340,15 +318,38 @@ openerp.web_widget_x2many_2d_matrix = function(instance)
|
||||||
return this._super.apply(this, arguments);
|
return this._super.apply(this, arguments);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
xy_value_change: function(e)
|
||||||
|
{
|
||||||
|
var $this = jQuery(e.currentTarget),
|
||||||
|
val = $this.val();
|
||||||
|
if(this.validate_xy_value(val))
|
||||||
|
{
|
||||||
|
var data = {}, value = this.parse_xy_value(val);
|
||||||
|
data[this.field_value] = value;
|
||||||
|
|
||||||
|
$this.siblings('.read').text(this.format_xy_value(value));
|
||||||
|
$this.val(this.format_xy_value(value));
|
||||||
|
|
||||||
|
this.dataset.write($this.data('id'), data);
|
||||||
|
$this.parent().removeClass('oe_form_invalid');
|
||||||
|
this.compute_totals();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this.parent().addClass('oe_form_invalid');
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
effective_readonly_change: function()
|
effective_readonly_change: function()
|
||||||
{
|
{
|
||||||
this.$el
|
this.$el
|
||||||
.find('tbody td.oe_list_field_cell span.oe_form_field>input')
|
.find('tbody td.oe_list_field_cell span.oe_form_field .edit')
|
||||||
.toggle(!this.get('effective_readonly'));
|
.toggle(!this.get('effective_readonly'));
|
||||||
this.$el
|
this.$el
|
||||||
.find('tbody td.oe_list_field_cell span.oe_form_field>span')
|
.find('tbody td.oe_list_field_cell span.oe_form_field .read')
|
||||||
.toggle(this.get('effective_readonly'));
|
.toggle(this.get('effective_readonly'));
|
||||||
this.$el.find('input').first().focus();
|
this.$el.find('.edit').first().focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
is_syntax_valid: function()
|
is_syntax_valid: function()
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
<th><t t-esc="widget.get_y_axis_label(y)" /></th>
|
<th><t t-esc="widget.get_y_axis_label(y)" /></th>
|
||||||
<td t-foreach="widget.get_x_axis_values()" t-as="x" t-att-class="'oe_list_field_cell' + (widget.is_numeric ? ' oe_number' : '')" t-att-data-x="x">
|
<td t-foreach="widget.get_x_axis_values()" t-as="x" t-att-class="'oe_list_field_cell' + (widget.is_numeric ? ' oe_number' : '')" t-att-data-x="x">
|
||||||
<span t-att-class="widget.get_xy_value_class()">
|
<span t-att-class="widget.get_xy_value_class()">
|
||||||
<input style="display: none" t-att-data-id="widget.get_xy_id(x, y)" t-att-value="widget.format_xy_value(widget.get_xy_value(x, y))" />
|
<input class="edit" t-att-data-id="widget.get_xy_id(x, y)" t-att-value="widget.format_xy_value(widget.get_xy_value(x, y))" />
|
||||||
<span style="display: none"><t t-esc="widget.format_xy_value(widget.get_xy_value(x, y))" /></span>
|
<span class="read"><t t-esc="widget.format_xy_value(widget.get_xy_value(x, y))" /></span>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td t-if="widget.show_row_totals" class="row_total oe_number" t-att-data-y="y"/>
|
<td t-if="widget.show_row_totals" class="row_total oe_number" t-att-data-y="y"/>
|
||||||
|
|
Loading…
Reference in New Issue