Does the Touch library provide iPad support for the display of PDF files in a "Panel"?
I have the following code working in Chrome on a PC, however, on an iPad it does not render the PDF file:
Code:
var pdfPanel = new Ext.Panel({
floating: true,
modal: true,
closable:true,
centered: true,
width: '100%',
height: '100%',
styleHtmlContent: false,
scroll: 'vertical',
html:'<iframe src="test.pdf" style="width:100%; height:100%;" frameborder="0"></iframe>',
dockedItems: [{
dock: 'top',
xtype: 'toolbar',
items:[{
text: 'close',
handler: function() {
pdfPanel.hide();
}
}]
}]
});