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

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

Imagine profil
Abandonează
Cel mai bun răspuns

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>
Imagine profil
Abandonează

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