-
30 Oct 2010 5:08 AM #1
Embed a PDF in Panel
Embed a PDF in Panel
The following html display a multiply page pdf on mobile safari and it works (scroll and zoom):
I've tried a lot of combination within the html tag of a panel (iframe, embed, object), but the results it's always the same, only a portion of the 1 page is displayed.Code:<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>PDF</title> </head> <body> <object data="corriere.pdf" type="application/pdf" width="100%" height="20000px"></object> </body> </html>
The code that i used is a code provided by Evant:
Anyone as solution?Code:Ext.setup({ icon: 'icon.png', tabletStartupScreen: 'tablet_startup.png', phoneStartupScreen: 'phone_startup.png', glossOnIcon: false, onReady: function() { new Ext.Panel({ fullscreen: true, html: '<iframe src="a.pdf"></iframe>', listeners: { resize: function(c, w, h){ c.body.child('iframe').setSize(w, h); } } }); } });
Thanks
-
14 May 2012 3:07 PM #2
Answer
Answer
Hello,
Has anyone been able to get this to work?
Similar Threads
-
How to embed a PDF doc into a Panel with automatic pinch in & out capabilities
By sirsri in forum Sencha Touch 1.x: DiscussionReplies: 3Last Post: 26 Jan 2012, 3:48 AM -
zoom a PDF in a Panel on an Ipad
By torsten.t in forum Sencha Touch 1.x: DiscussionReplies: 9Last Post: 3 Nov 2010, 6:08 AM -
Embed PDFs within a Ext.Panel (.pdb)
By RandyMcMillan in forum Sencha Touch 1.x: Examples and ShowcasesReplies: 0Last Post: 17 Aug 2010, 6:16 PM -
Can I embed a Form Panel inside a Window?
By mrkadakia in forum Ext 3.x: Help & DiscussionReplies: 20Last Post: 3 Aug 2009, 5:52 AM -
How do I embed a panel inside a tab?
By ultrus in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 31 Dec 2007, 10:57 AM


Reply With Quote