Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
4858 Vizualizări

in odoo 8 

instance.web.client_actions.add( 'petstore.homepage', 'instance.oepetstore.HomePage');

how to write the same client action in odoo 9  

Imagine profil
Abandonează
Cel mai bun răspuns

In Odoo 9 you could do it like this

var core = require('web.core');
var Widget = require('web.Widget');
var petstore_homepage = Widget.extend({});
core.action_registry.add("petstore.homepage", petstore_homepage);
Imagine profil
Abandonează

Thanks Axel .....!

Cel mai bun răspuns

Did you get this to work in Odoo v9? Care to share the petstore.js file?

I've tried lots of things and still get the:

Could not find client action
'petstore.homepage'

error

Thank you

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
aug. 22
4254
3
feb. 25
4609
1
iun. 23
1944
1
mai 23
1898
1
oct. 22
4060