Guest User

Untitled

a guest
Aug 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. extjs 3.3: floating panel
  2. var testPanel = new Ext.Panel({
  3. id: 'testP',
  4. width: 50,
  5. height: 100,
  6. floating: true,
  7. title:'Test'
  8. });
  9. testPanel.show();
  10.  
  11. Ext.Panel({
  12.  
  13. //.. other config..,
  14. floating : {
  15. //Ext.Layer config options. Maybe a property in that will get you the desired effect that you're looking for.
  16. }
  17. });
Add Comment
Please, Sign In to add comment