kim
10 Apr 2012, 3:45 AM
If you change "Spaces to Indent" in the settings, the designer saves it incorrect to the .xds file.
The designer saves it as: "spacesToIndent": "2"
it should be saved as: "spacesToIndent": 2
This causes problems in code with multiple nested {}
var store = Ext.data.StoreManager.lookup('Store');
store.load({
callback: function(){
// here the desinger indents to much
}
});
The designer saves it as: "spacesToIndent": "2"
it should be saved as: "spacesToIndent": 2
This causes problems in code with multiple nested {}
var store = Ext.data.StoreManager.lookup('Store');
store.load({
callback: function(){
// here the desinger indents to much
}
});