View Full Version : [FIXED] adding fullscreen:true to view = blank in designer.
hotdp
16 Mar 2012, 12:22 AM
Hi,
If you have a view and add fullscreen:true it will go blank in the designer. Everything works fine when browsing but in designer it is blank?
bharatn
16 Mar 2012, 4:00 PM
Thanks for the report. InitialView is automatically assigned to the view with Initial View set so you don't have to set it.
hotdp
17 Mar 2012, 1:31 AM
Thanks for the report. InitialView is automatically assigned to the view with Initial View set so you don't have to set it.
Hi, I know that. But I use fullscreen on other views then on the Initial View. I have created a example/scenario that I use often where I use z-index 2 and fullscreen:true.
If I can accomplish the same thing without using fullscreen: true please tell me how?
Just press the button in the toolbar.
hotdp
20 Mar 2012, 9:43 AM
@bharatn
Did you have a better solution?
bharatn
20 Mar 2012, 12:51 PM
You could do this - remove the fullscreen and use Viewport.add
var settings = Ext.create('MyApp.view.Settings');
settings.setShowAnimation({
type:'slide',
direction:'up',
duration:500
});
Ext.Viewport.add(settings);
settings.show();
You can also use navigation view.
Powered by vBulletin® Version 4.1.5 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.