Yung A
Yung A

Reputation: 239

Sencha touch overlay effect for Ex.Msg.alert doesnt close

After i updated my chrome version from 43 to 44 stable, I have been battling with the Sencha touch overlay-effect for both the Ext.Msg.alert() and the DatePicker components. After clicking the "Done" button, the overlay doesn't disappear and it blocks the UI, How can i solve this is there a CSS class or something. Please check the illustrative images

code for alert box

Ext.Msg.alert('Sorry', responseData.ServerMsg);

code for datepicker

    {
     id: 'myID',
     xtype: 'datepickerfield',
     labelAlign: "top",
     value: new Date(),
     dateFormat: 'd M Y' 
   }

Please check below images

Upvotes: 1

Views: 206

Answers (1)

Yung A
Yung A

Reputation: 239

I updated my Sencha touch version from touch-2.4.0 to touch-2.4.2 to solve this. i went to my app folder then run

sencha app upgrade [path/to/touch-2.4.2]

The command updates the touch folder inside my app folder. I had to rename my app.json to avoid merge conflicts the restored it afterwards. This new version comes with couple of fixes. The above mentioned problem and chrome scrolling issue aswell.

Upvotes: 1

Related Questions