NitrOuS
2 Dec 2010, 8:07 AM
In project of mine I have a list configured like this:
MyNameSpace.moviesList = new Ext.List({
fullscreen: true,
itemTpl: '<strong>{sth}</strong>',
singleSelect: true,
grouped: true,
store: MyNameSpace.myStore,
indexBar: true,
});
in a panel configured:
MyNameSpace.MoviesPanel = new Ext.Panel({
fullscreen: true,
title: 'Title',
items: [MyNameSpace.moviesList]
});
The first time I entered the screen, the list is not in fullscreen mode, but if I change the orientation in my iPhone device, the list expand in the whole screen. Is there any problem with my configuration or is it a bug? Thanks in advance.
PS: In a while I will send screenshots in order to make myself more clear
MyNameSpace.moviesList = new Ext.List({
fullscreen: true,
itemTpl: '<strong>{sth}</strong>',
singleSelect: true,
grouped: true,
store: MyNameSpace.myStore,
indexBar: true,
});
in a panel configured:
MyNameSpace.MoviesPanel = new Ext.Panel({
fullscreen: true,
title: 'Title',
items: [MyNameSpace.moviesList]
});
The first time I entered the screen, the list is not in fullscreen mode, but if I change the orientation in my iPhone device, the list expand in the whole screen. Is there any problem with my configuration or is it a bug? Thanks in advance.
PS: In a while I will send screenshots in order to make myself more clear