I try to play a you tube video in my site.for that i use the following code
- var pnl = new Ext.Panel({
- layout: {
- type: 'vbox',
- pack: 'center'
- },
- items: [{
- xtype: 'video',
- url: 'youtube url',
- loop: true,
- width: 500,
- height: 400,
- poster: 'Screenshot.png'
- }],
- fullscreen: true
- })
But the above code not works.any idea to play the youtube video.i use html:'youtube url'. it works on browser but not works in iphone or android.Thanks