Threaded View
-
23 Sep 2010 10:14 PM #1
[OPEN-1289] Very horizontally long window with buttons
[OPEN-1289] Very horizontally long window with buttons
Ext version tested:
- Ext 3.2.1
- jquery
- only default ext-all.css
- IE6
- IE7
- IE8
- FF3.6.10 (firebug 1.5.4 installed)
- Safari 5.0.1
- Chrome 6.0.472.63
- WinXP Pro
- In Webkit browsers, Sometimes very horizontally long (> 10000px) window with buttons is shown.
Steps to reproduce the problem:Code:<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Window Test</title> <link rel="stylesheet" type="text/css" href="lib/ext.js/resources/css/ext-all.css"/> <script type="text/javascript" src="lib/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="lib/ext.js/adapter/jquery/ext-jquery-adapter-debug.js"></script> <script type="text/javascript" src="lib/ext.js/ext-all-debug-w-comments.js"></script> <script type="text/javascript"> Ext.onReady(function() { new Ext.Window({ modal: true, title: 'test', buttons: ['OK', 'Cancel'], html: 'Test' }).show(); }); </script> <body> </body> </html>- Using Chrome or Safari, Execute above html.
- Test window displayed.
- Long long long long window will be shown.
Possible fix:
Below css code insert.
or remove .x-toolbar-left{width:100%;} from ext-all.css(line 1863-1865)Code:<style type="text/css"> .x-window .x-toolbar-left { width: auto; } </style>
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
lining up buttons horizontally or in a table
By DaveC426913 in forum Sencha Touch 1.x: DiscussionReplies: 4Last Post: 17 Jan 2011, 7:22 AM -
[OPEN-1001] Memory leak on buttons inside a window
By VT-TizianoF in forum Ext 3.x: BugsReplies: 2Last Post: 14 Oct 2010, 11:37 PM -
Ext Window taking long time to open
By sidd in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 17 Sep 2009, 9:30 PM -
[2.0.2][OPEN] Buttons partially obscured in Window with IE6 - not happening in 2.0
By GXE in forum Ext 2.x: BugsReplies: 4Last Post: 3 Aug 2008, 1:09 AM


Reply With Quote