Changes between Initial Version and Version 1 of Ticket #10460
- Timestamp:
- Dec 3, 2009, 10:18:38 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10460
- Property Owner set to bill
-
Property
Status
changed from
new
toassigned
-
Property
Summary
changed from
dijit.layout.TabContainer - this._currentChild.id - Failure
to[regression] TabContainer: this._currentChild.id failure on deleting last tab
-
Ticket #10460 – Description
initial v1 1 When I close the last Child of a TabContainer the InternetExplorer7 throws the Error: 1 When I close the last Child of a !TabContainer the !InternetExplorer7 throws the Error: 2 {{{ 2 3 'this._currentChild.id' ist Null oder kein Objekt 3 4 'this._currentChild.id' is null or no object ((free translated)) 4 5 }}} 5 6 In version 1.3.2 everything goes perfect. Till I update to 1.4.0rc* the Error would be thrown. 6 7 7 8 The Error do not thrown if I write in line 96 of dijit.layout.StackController 9 {{{ 8 10 if (this._currentChild) var b=this.pane2button[this._currentChild.id]; 11 }}} 9 12 where 13 {{{ 10 14 var b=this.pane2button[this._currentChild.id]; 15 }}} 11 16 12 17 then everything I tested works perfekt.