Browse Source

[FIX] autosize the textareas

pull/4/head
Guewen Baconnier 11 years ago
parent
commit
6e6125df17
  1. 1
      web_translate_dialog/__openerp__.py
  2. 7
      web_translate_dialog/static/src/js/web_translate_dialog.js

1
web_translate_dialog/__openerp__.py

@ -30,6 +30,7 @@ Replace the standard translation view by an alternative one:
* The translation dialog displays empty fields for the untranslated fields, * The translation dialog displays empty fields for the untranslated fields,
instead of the source values. instead of the source values.
* Support HTML fields * Support HTML fields
* Autosize the textareas to the size of the content
""", """,
"version": "1.0", "version": "1.0",

7
web_translate_dialog/static/src/js/web_translate_dialog.js

@ -77,9 +77,6 @@ openerp.web_translate_dialog = function (instance) {
this.$buttons.find(".oe_form_translate_dialog_cancel_button").click(function(){ this.$buttons.find(".oe_form_translate_dialog_cancel_button").click(function(){
self.on_button_close(); self.on_button_close();
}); });
var $textarea = self.$el.find('textarea.oe_trad_field');
$textarea.css({minHeight:'100px'});
$textarea.autosize();
this.initialize_html_fields(); this.initialize_html_fields();
this.do_load_fields_values(); this.do_load_fields_values();
@ -158,6 +155,10 @@ openerp.web_translate_dialog = function (instance) {
$tarea.cleditor()[0].updateFrame(); $tarea.cleditor()[0].updateFrame();
} }
}); });
var $textarea = self.$el.find('textarea.oe_trad_field');
$textarea.css({minHeight:'100px'});
$textarea.autosize();
$(window).resize(); // triggers the autosize
deff.resolve(); deff.resolve();
}); });
}); });

Loading…
Cancel
Save