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?