1
我剛發現即使我最簡單的2.0應用程序與IE失敗。這與2.0或2.0p2正常工作,但在IE中,它與SCRIPT5007失敗:無法獲取屬性的值'長度':對象爲空或未定義sdk-debug.js,行43756字符13SDK 2.0p3似乎與IE9的問題
這發生在至少我的其他腳本之一也是如此。我使用的是IE9.09,並且在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
});
}
});
正確 - 我在拉力賽中跑步時看不到這種行爲 – kimon