Search code examples
buttonodooopenerp-7

OpeneERP: How to create a button with no icon (only text on it)


I would like to create a button with no icon, only a text that i display. I 've tried to not put 'icon' parameter but it doesn't work.

Here's the code i've wrote:

<button name="open_popup" string="Quantités produites" type="object"/>

Solution

  • i've known a possibility, but i think that was a listview bug in chrome or something.

    maybe you should try class="oe_link" on your button, so it looks like a link.

    <button name="open_popup" string="Quantités produites"
     type="object" class="oe_link"/>