Here is a classic editable list in OpenERP v6.0:

It’s a custom view I created this month at work for one of our customer to let him select a list of products, then batch-print their labels on stickers.

The view above is produced by the following XML:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>

    <!-- Multi product printing wizard -->
    <record model="ir.ui.view" id="label_wizard_product_form">
      <field name="name">label.wizard.product.form</field>
      <field name="model">label.wizard.product</field>
      <field name="type">form</field>
      <field name="arch" type="xml">
        <form string="Label Wizard">
          <field name="line_ids" colspan="4" nolabel="1"/>
          <group col="2" colspan="2">
            <button icon="gtk-ok" name="action_print" string="Print" type="object"/>
          </group>
        </form>
      </field>
    </record>

    <record model="ir.ui.view" id="label_wizard_product_line_tree">
      <field name="name">label.wizard.product.line.tree</field>
      <field name="model">label.wizard.product.line</field>
      <field name="type">tree</field>
      <field name="arch" type="xml">
        <tree string="Items" editable="bottom">
          <field name="product_template_id"/>
          <field name="size_id"/>
          <field name="main_color_id"/>
          <field name="product_id"/>
          <field name="quantity"/>
        </tree>
      </field>
    </record>

  </data>
</openerp>

If you start searching a product template with the first field, you’ll get a pop-up similar to this one:

As you can see, these kind of pop-up inherits the width of their parent field, which hide the end of all lines if they are too long. It becomes difficult to distinguish the items when all found objects have the same long prefix.

Now I want to get rid of this behavior and let the pop-up menu take all the necessary width it needs to fully display its content.

My instinct told me that this default style could easily be overridden with some static CSS directives. But digging deeper into OpenERP web client code, I realized that the width is dynamically set by the many2one widget itself.

The code responsible for this behavior is located in the addons/openerp/static/javascript/m2o.js file, in the ManyToOne.prototype.on_keydown method:

ManyToOne.prototype.on_keydown = function(evt) {
    (...)
            jQuery('div.autoTextResults[id$="' + this.name + '"]').width(w)
    (...)
};

My goal is now to alter this default behavior, without touching the code in m2o.js.

And thanks to Bryan Forbes’ article, I engineered a method to monkey patch the original ManyToOne.prototype.on_keydown Javascript method.

Here is the code I added in the XML view, just below the line_ids field:

<field name="line_ids" colspan="4" nolabel="1"/>
<html>
  <script type="text/javascript">
    $(document).ready(function(){
      (function(){
        var on_keydown_orig = ManyToOne.prototype.on_keydown;
        ManyToOne.prototype.on_keydown = function(evt) {
          var result = on_keydown_orig.call(this, evt);
          $(".autoTextResults").css('width', 'auto');
          return result;
        };
      })();
    });
  </script>
</html>

The result of this is a nice looking pop-up which doesn’t break any vanilla Javascript of the OpenERP web client: