-
31 May 2012 12:35 AM #1
Bug with last update sencha architect 2.0.1
Bug with last update sencha architect 2.0.1
I believe i found a bug in the last update of sencha architect 2.0.1.
In my project, i've a list container with html content in items and linked to a JSONP store.
I've also different buttons to filter element of my list.
When i touch a button, i wrote this :
var storeList = Ext.data.StoreManager.lookup('MyStore');
var results = storeList.queryBy(function(record){
if (record.get('myCriteria') === myCriteriaTouch)
{
return true;
}
});
//dataList is the reference for my list
Ext.getCmp('dataList').setStore({
data: results.getRange()
});
With the version 2.0.0, everything is alright but with the version 2.0.1, i've all my elements in my list but the html content is empty.
Why ????
-
31 May 2012 8:33 AM #2
SA 2.0.1 update?
Or Sencha Touch 2.0.1?UI: Sencha Architect 2.x / ExtJS 4 MVC
Server side: EJB 3.1 / CDI / JPA 2 / JAX-RS / JasperReports
Application Server: Glassfish 3.1.x
Databases: Oracle 10g & 11g / DB2 9 & 10 / Firebird 2.5
If you like my answer please vote!
-
31 May 2012 8:38 AM #3
To report a bug, please mention
- Version number
- Build
- Framework
- Steps to reproduce
Thanks.--
Luca Candela
twitter: @luckymethod


Reply With Quote