I need to open website out of openerp project, for example google.com. It must be in act_window tag. How to pass parameters dynamicly in URL , for example http://www.google.bg/?q=sun?

link|improve this question
feedback

1 Answer

I do not know either it can possible with act_window or not. but I'm sure that we can open url through "ir.actions.url" model.

I do not tried it. but the hint can guide you.

1) create action record with "ir.actions.url" model and url

2) create menuitem for the same action with type='url'

3) you need to create wizard to open particular url address. with

'type': 'ir.actions.act_url' and

'url':"web address" in return values.

hope, it could help you.

link|improve this answer
i need button or link in sidebar, are you have any idea – user1047025 Nov 17 '11 at 12:05
I am not sure for act window but you can create wizard (same as normal wizard view in sidebar) view. – Yajushi Nov 18 '11 at 7:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.