I just discovered even my simplest 2.0 app fails with IE. This works fine with 2.0 or 2.0p2, but in IE it fails with SCRIPT5007: Unable to get value of the property 'length': object is null or undefined sdk-debug.js, line 43756 character 13
This happens on at least one of my other scripts as well. I'm using IE9.09, and running in debug mode outside of Rally.
Ext.define('FieldEscalations', {
extend: 'Rally.app.App',
componentCls: 'app',
launch: function() {
Rally.data.ModelFactory.getModel({
type: 'Defect',
success: function(model) {
this.grid = this.add({
xtype: 'rallygrid',
model: model,
disableColumnMenus: false,
columnCfgs: [
'FormattedID',
'Tags'
],
storeConfig: {
filters: [
{
property: 'State',
operator: '<',
value: 'Closed'
}, {
property: 'SupportTicket',
operator: '!=',
value: ''
}
],
sorters: [
{
property: 'CreationDate',
direction: 'DESC'
}
]
}
});
},
scope: this
});
}
});