This question has been flagged
9058 Views

Hi,

I'm new to openerp addon development and I'm trying to add functionality to openerp's document management system that allows the user to view pdfs within the browser rather than downloading the pdf which is the default behavior.

The approach I'm aiming to take is to create a custom widget using mozilla's pdf.js library and apply it to a copy of the 'datas' binary field within the document_view.xml on a separate notebook page (after verifying that the document is actually a pdf of course). For example:

...
<page string="View Pdf">
    <field name="datas" filename="datas_fname" widget="pdfviewer"/>
</page>

I've taken a gander at a tutorial suggested on another question (Can't post link due to low karma) but the widget that is created is just a Facebook widget with no obvious (at least to me) interaction with data originally in the field.

Is this the correct way to approach something like this? or rather, is this how widgets work? and if so how could i get the binary data through javascript?

Avatar
Discard