Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad-like pop-over in Sencha touch

I want to create an iPad-like pop-over with a login form in Sencha touch. How can I do this?

like image 573
headkit Avatar asked Apr 15 '11 14:04

headkit


1 Answers

You may try making a normal Ext.Panel to look like a popover

var gkpopover = new Ext.Panel({
id :'gkpopoverpanel',
floating:true,
modal:true,
width:'100px',
height:'100px',                                             });

Note: Never forget to set height and width.

and to Show

gkpopover.show('pop');

hope this makes sense.

like image 69
thesummersign Avatar answered Sep 30 '22 08:09

thesummersign