I have one html page (css,js) how add this html page in custom module and link to menu.
After click on menu (backend) link I need open html page in popup html.
Any example?
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="test_check" model="ir.actions.act_url">
<field name="name">Test</field>
<field name="type">ir.actions.act_url</field>
<field name="target">new</field>
<field name="url">test/static/src/index.html?</field>
</record>
<menuitem action="test_check" name="Test" id="menu_test_check" sequence="44"/>
</data>
</openerp>
When use new html page is open in new tab, I want after open eg. Accounting after click in menu link in small window (200 x 200px) open html page. In my example in html page I have calculator. Example postimg.org/image/jzll39dp5
Is it possible implement this https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_open2