-
15 Jan 2011 6:45 PM #1
combo looks ok in firefox and NOT ok in IE8
combo looks ok in firefox and NOT ok in IE8
IE UFO...problem.png
After asnwer to myself all this night.... :-) So, if this can help someone... If you have a table country (with countryId, and countryName)... And then, you have city (with cityId, countryiId, cityName)...
On editing records from city table, you make a combo with country list... Then be careful to:
First create a hidden field with id 'aFakePseudoForId'... You can without, but need then to set manually some suplimentary stuff in the combo, so, declaring separately reduce the code...
Then on your combo definition :
Then on server side use $_POST['aFakePseudoForId'] for the countryId...Code:valueField : 'countryId', displayField: 'countryName', hiddenName : 'aFakePseudoForId' // and never 'countryId', even if this seems logic // if hiddenName is named 'countryId' then there are a UFO on the left top corner in IE !
Hope this can help some...
Code:if ( someone.haveAnotherShorterSolution()){ thread.stillOpen(true) } else{ thread.close(); // :-) }
-
16 Jan 2011 5:38 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 44
The hiddenName is not allowed to be the same as the id, so you can use hiddenName:'countryId', as long as you use a different id.
Similar Threads
-
IE7, IE8 and Firefox compatibility
By eaperezc in forum Ext 3.x: Help & DiscussionReplies: 4Last Post: 28 Oct 2010, 4:52 AM -
Chart is not show in IE8 it OK in Firefox
By chid007 in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 1 Jul 2010, 10:38 PM -
Roweditor error in Firefox and IE8
By rpnoble in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 16 Jun 2010, 11:56 PM -
ExtJS 3.2 - Debugging IE8/7 vs. Firefox
By httpdotcom in forum Ext 3.x: Help & DiscussionReplies: 2Last Post: 13 Apr 2010, 1:03 PM -
DIFFERENT BEHAVIOUR ext 2.3 and 3.1 WITH IE8 AND FIREFOX
By simoneg in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 5 Mar 2010, 7:00 AM


Reply With Quote