-
10 Aug 2010 6:57 AM #11Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 41
That line would make your page HTML 4.01 strict. This could be a problem if you have a very picky browser, because Ext uses stuff like iframes and form targets.
I recommend using Ext either in quirks mode (no doctype) or with HTML 4.01 transitional:
Also, the array-grid example creates invalid HTML (some of the company names contain &-signs that should have been escaped by a render. Try:Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Code:{ id : 'company', header : 'Company', width : 160, sortable : true, dataIndex : 'company', renderer : 'htmlEncode' },
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[OPEN-1278] SCRIPT438 error with IE9 Beta and ext-all-debug.js
By stevenwilford in forum Ext 3.x: BugsReplies: 8Last Post: 9 Apr 2012, 7:05 AM -
[OPEN-1232] CalendarPanel bug when placed inside a Panel (Ext 3.3 beta)
By omermx in forum Ext 3.x: BugsReplies: 7Last Post: 23 Nov 2011, 5:00 AM -
[OPEN-1274][3.3 Beta] Ext.grid.HeaderDropZone - unused code?
By mankz in forum Ext 3.x: BugsReplies: 0Last Post: 17 Sep 2010, 3:45 AM -
Problem when using checkBoxSelectionModel in GridPanel in extjs 3.3 beta version
By sunil_vakotar in forum Ext 3.x: Help & DiscussionReplies: 22Last Post: 16 Aug 2010, 1:44 AM -
[CLOSED][3.0 Core] (beta): Problem with Ext.CompositeElementLite.item
By akva in forum Ext 3.x: BugsReplies: 4Last Post: 25 Apr 2009, 8:59 AM


Reply With Quote