Skip to Content
Menu
This question has been flagged
3 Replies
15235 Views

how can i access a file which is located in the folder using href in xml code.for example my path for a file which is located in my localhost is /home/harmony8/Desktop/index.html..how can i access this file through href

Avatar
Discard
Best Answer

The below steps to access html File in Openerp

  1. create custom web module.
  2. Add the file in the Location web_custom/static/src/index.html
  3. In the __openerp__.py File add the path Location.
  4. Install the web custom module in openerp

And installed the module to access the file http://localhost:PortNo/web_custom/static/src/index.html

The below code to open the link href in xml code.

<a href="#" onclick="window.open('/web_custom/static/src/index.html', '_blank')" >To Access Index Html Page</a>
Avatar
Discard

Great, please mark the answer as correct if it worked for you. Thanks