-
27 Jun 2012 1:32 AM #1
'headerCt' is null or not an object Error
'headerCt' is null or not an object Error
REQUIRED INFORMATION
Ext version tested:- Ext 4.1.0
- IE8
- Under ext-all-dev.js, under line 121695.
- 'headerCt' is null or not an object Error
- Having 2 tab item in the Tab Panel.
- 1st Tab let it be empty tab.
- 2nd Tab create a Grid Panel and render record together with Selection Model(CheckBox).
- When load, select the Checkbox accordingly.
The result that was expected:- Should select the Checkbox without prompting error.
- 'headerCt' is null or not an object Error
HELPFUL INFORMATION
Possible fix:
- Edited ext.all-dev.js
From
var view = this.views[0]
To
if (this.views[0]) {
var view = this.views[0]
}
else {
var view = this.view
}- Reason: if the 2nd tab not activated, it will not get the headerCt of it. But it still in somewhere which is in this.view
-
27 Jun 2012 1:57 AM #2
erm i think i posted in the wrong section. can any mod help me move to the bug section? lol
-
27 Jun 2012 9:55 AM #3
Moved.
Please provide a working example so we can be sure we are looking at the same issue.
Regards,
Scott.
Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.


Reply With Quote