I've created a panel in Sencha Touch like this:
var albumContainer = Ext.create('Ext.Panel', {
id: 'album_container',
html: '',
flex: 1,
scrollable: 'vertical',
padding: 0,
});
Everything is functioning as expected, but after adding the scrollable property, the panel now has an unwanted white background. I've tried setting the background of #album_container with !important, but it's not working. Can anyone provide some guidance on how to remove the white background? Thank you in advance.
Regards, Damir H.