Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an application using GWT in which I need to show a PDF file from a grid into a Dialog Box. How can this be done?

My code:

        Column ColTest = new Column(new HyperlinkCell()) {

        @Override

        public Hyperlink getValue(ItemOteClient list)

        {
            String dir = null;
            dir = "c:/TestFiles/Test1.pdf";

            Hyperlink h = new Hyperlink(list.getAdjunto(),dir);         
            return h;

        }

    };  

This code however doesn't work. When I click the hyper-link the application doesn't open a new tab or window with the PDF file. Any suggestions on how I might go about doing this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.