Saturday, August 24, 2013

ST2.2.1 bug with the New Chrome 29.0.1547.57

The new Chrome 29.0.1547.57 doesn't handle the default css from ST2.2.1.

The fix can be found below
here

Thursday, August 22, 2013

ST2 screws you! (rhyme intended)

For some reason, when I had

store: 'Storename',

as a config, it kept on messing up, saying
[WARN][Ext.dataview.List#applyStore] The specified Store cannot be found

Turns out, you need to use

store : { xclass : 'SenchaTest.store.Storename'},


Also, you need to use a UUID identification strategy in your model:
        identifier: {
            type: 'uuid'
        },


Again, ST 2 screws you!