Domanda

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"/>
È stato utile?

Soluzione

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"/>

Altri suggerimenti

In version 7 you can use class="oe_link":

<button name="open_popup" string="Quantités produites" type="object" class="oe_link"/>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top