user2622786
user2622786

Reputation: 819

Sencha Touch 2 App FieldSet not rendering

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.

List Screen Detail Screen

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).

toolbarissue

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. DetailScreenwithissue

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,

  1. Cleared browser cache
  2. Generated another workspace, copied the project and run the project from there.
  3. Used older version of the code in which these issues were not there

NONE OF Them worked :(

Has anyone faced this kind of issue or anyone has any suggestion. Please help!

Regards, P

Upvotes: 0

Views: 589

Answers (1)

kevhender
kevhender

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

Related Questions