Reputation: 819
I am developing Sencha Touch 2 app, using the sdk version Sencha-touch-gpl 2.2.1. I am facing a very peculiar issue, I have a navigation view, in which the first view is a List Screen on itemdisclosure of individual item in the list the Detail Screen is displayed. The Detail screen comprises of fieldset & another list within a panel.
Until yesterday the app was working perfectly fine. Now I am facing an issue,
1) The toolbar Title is now not getting displayed, it shows for fraction of secs and then disappears (No code change is done and it was working perfectly fine a day before).
2)The List screen displays properly, on itemDisclosure, in the detail screen the FieldSet is not getting displayed but the list in the detail screen is getting displayed perfectly fine.
I was populating the Detail screen with the record from the selected list item, I use the following code on itemdisclosure
showDetail : function(list, record) { this.getMain().push({ xtype : 'ticketdetail', data : record, });
record holds the value, I have checked it via printing the ticketid on Console.
I have tried the following things,
NONE OF Them worked :(
Has anyone faced this kind of issue or anyone has any suggestion. Please help!
Regards, P
Upvotes: 0
Views: 589
Reputation: 4405
This looks like the problem caused by the auto-update to Chrome 29. See the fix here: http://www.sencha.com/forum/announcement.php?f=90&a=43
Upvotes: 1