How to set full-screen page displaying automatically  on portal.

one viewset included two views (named <b>topView</b> and <b>detailView)</b>
putting a <i>table control</i> in the <b>detailView,boz</b> of many columns of the <i>table</i>  exceed the width of portal screen,which result in the  <b>topView</b> is the same width to the <b>detailView</b>.both of the two views exceed out of the full-screen width.but i don't wanna move the <b>topView</b> when i drag <i>scroll horizontal bar control</i>. so i added a <b>ScrollContainer</b> into the <b>detailView,and</b> put the <i>talbe</i> control into it.
the confusoning is :i don't know how to set the the <u>width</u> of the  <b>ScrollContainer</b>  cotrol , to keep it  full-page displaying any time on portal .
   u know the IE'Screen resolution setting maybe different ,e,g,:1024786px  and 800600px.

HI,
Give the width in % instead of mentioning in pixels.
ie. for full width, give 100%.
Make sure the layout is GridLayout.
Regards
Fahad Hamsa

Similar Messages

  • How to set full screen camera on ios 8 on iphone5s

    How to set full screen camera on iphone 5s having an ios8

    HI,
    Give the width in % instead of mentioning in pixels.
    ie. for full width, give 100%.
    Make sure the layout is GridLayout.
    Regards
    Fahad Hamsa

  • How to set full screen background color in new Pages

    I just updated to Mavericks and the new Pages...I often use a certain background color when I work in full screen mode, but that color is gone withe the upgrade and I don't see how to specify a color any longer...any ideas?
    Thx.

    Given over 90 removed features in Pages 5, I guess they were busy "not noticing" a lot more than the background color:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Peter

  • How to record full screen but display in lower resolution project

    I'm preparing a training video which shows full screen movement but will be delivered in a smaller resolution project size. I can't seem to figure out how to do this in captivate. Does anyone have suggestions?
    Thanks!

    Hi there
    One way is to record, then in edit mode click Project > Rescale to reduce the resolution. Note that this will degrade the clarity to a degree. The amount of degradation will depend on how much rescaling you are doing.
    I've also got a small video that is intended to assist with another way of working with larger screen sizes.
    Hopefully this helps... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Set full screen mode

    Hi everyone
    It may not seem a JMF problem but i am hoping for some help.
    I am just trying to implment full screen on jmf player panel, i tried but the nothing is shown but a black screen
    the following is the code of whole program:-
    import java.awt.*;
    import java.awt.Rectangle;
    import java.awt.Dimension;
    import java.awt.event.*;
    import javax.media.*;
    import javax.media.Player;
    public class MyPlayer extends Frame implements ControllerListener
         private Player player;
         private Panel panel;
         private String [] urls;
         int currentsong = 0;
         MediaLocator ml;
         int flag = 0;
         int videoWidth = 320, videoHeight = 200, controlHeight = 30;
         Dimension size;
         Component visual, control;
         private Dimension dimFrameSizeBeforeFullScreen = null;
         private Window windowFullScreen = null;
         public static void main(String[] args)
              String[] files = { "Khalid_Diana.mpg", "11.mpg", "Taha.mpg" };
              MyPlayer Medialist = new MyPlayer(files );
              Medialist.nextMedia(0);
         public void setFullScreen() {
              System.out.println("Full Screen");
              Dimension dimScreen;
              Dimension dimPrefSize = new Dimension(500,300);
              Rectangle rectVideo;
              panel = new Panel();
              panel.setLayout(new BorderLayout());
              //if (panel == null)
              //     return;
              dimScreen = Toolkit.getDefaultToolkit().getScreenSize();
              System.out.println("Screen Size: " + dimScreen.toString());
              if (windowFullScreen == null)
                   windowFullScreen = new Window(this);
                   windowFullScreen.setLayout(null);
                   windowFullScreen.setBackground(Color.black);
              windowFullScreen.setBounds(0, 0, dimScreen.width, dimScreen.height);
              rectVideo = new Rectangle(0, 0, dimScreen.width, dimScreen.height);
              if ((float)dimPrefSize.width / dimPrefSize.height >= (float)dimScreen.width / dimScreen.height){
                   rectVideo.height = (dimPrefSize.height * dimScreen.width) / dimPrefSize.width;
                   rectVideo.y = (dimScreen.height - rectVideo.height) / 2;
              else{
                   rectVideo.width = (dimPrefSize.width * dimScreen.height) / dimPrefSize.height;
                   rectVideo.x = (dimScreen.width - rectVideo.width) / 2;
              Toolkit.getDefaultToolkit().sync();
              windowFullScreen.add(panel);
              panel.setBounds(rectVideo);
              windowFullScreen.setVisible(true);
              windowFullScreen.validate();
         public MyPlayer(String[] files)
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        if (player!=null) player.close();
                        System.exit(0);
                   try{
                        Thread.sleep(2000);
                        setFullScreen();
                   }catch (Exception e){
              urls = files;
              //setTitle("Player");
              //panel.setBackground(Color.BLACK);
              //add(panel);
              //setLocation(300,250);
              //setSize(500, 500);
              //setResizable(false);
              //setVisible(true);
         public void nextMedia(){ nextMedia(0);}
         public void nextMedia(int index)
              try
                   ml = new MediaLocator("file:D:/Temp/" + urls[index]);
                   player = Manager.createPlayer(ml);
                   player.addControllerListener(this);
                   player.start();
              catch(Exception x) { x.printStackTrace(); }
         public void controllerUpdate(ControllerEvent ce)
              if (ce instanceof RealizeCompleteEvent)
                   visual=player.getVisualComponent();
                   if (visual !=null)
                      // size=visual.getPreferredSize();
                        //videoWidth=size.width;
                        //videoHeight=size.height;
                        panel.add( "Center", visual);
                   else {
                      // do nothing
                   if ((control=player.getControlPanelComponent())!=null)
                        //controlHeight=control.getPreferredSize().height;
                        //panel.add("South", control);
                   //setSize(videoWidth+10, videoHeight+controlHeight+30);
                   //validate();
                   //repaint();
              else if(ce instanceof EndOfMediaEvent) {
                   player.close();
                   player.deallocate();
                   panel.removeAll();
                   nextMedia(currentsong=(currentsong+1)% urls.length);
              //System.out.println("\n " + urls[currentsong] + " : " + ce.toString() );
              //else if ( ce instanceof FormatChangeEvent){}
    }Thanks in advance

    My problem is solved !
    Following is code of how to set full screen mode:-
    mport java.awt.*;
    //import java.awt.Rectangle;
    import java.awt.Dimension;
    import java.awt.event.*;
    import javax.media.*;
    import javax.media.Player;
    import javax.swing.*;
    public class MyPlayer extends JFrame implements ControllerListener
         private Player player;
         private Panel panel;
         private String [] urls;
         int currentsong = 0;
         MediaLocator ml;
         int flag = 0;
         int videoWidth = 1024, videoHeight = 768, controlHeight = 30;
         Dimension size;
         Component visual, control;
         private Dimension dimFrameSizeBeforeFullScreen = null;
         private Window windowFullScreen = null;
         Container content = getContentPane();
         public static void main(String[] args)
              String[] files = { "Khalid_Diana.mpg", "11.mpg", "Taha.mpg" };
              MyPlayer Medialist = new MyPlayer(files );
              Medialist.nextMedia(0);
         public MyPlayer(String[] files)
              setBackground(Color.BLACK);
              setUndecorated(true);
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              System.out.println("\n\n The Screen DIM: " + screenSize);
              content.setBounds(0, 0, screenSize.width, screenSize.height);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        if (player!=null) player.close();
                        System.exit(0);
              urls = files;
              setTitle("Player");
              panel = new Panel();
              panel.setLayout(new BorderLayout());
              panel.setBackground(Color.BLACK);
              add(panel);
              pack();
              //setLocation(300,250);
              setSize(1024, 768);
              //setResizable(false);
              setVisible(true);
         public void nextMedia(){ nextMedia(0);}
         public void nextMedia(int index)
              try
                   ml = new MediaLocator("file:D:/Temp/" + urls[index]);
                   player = Manager.createPlayer(ml);
                   player.addControllerListener(this);
                   player.start();
              catch(Exception x) { x.printStackTrace(); }
         public void controllerUpdate(ControllerEvent ce)
              if (ce instanceof RealizeCompleteEvent)
                   visual=player.getVisualComponent();
                   if (visual !=null)
                       size=visual.getPreferredSize();
                        videoWidth = size.width;
                        videoHeight = size.height;
                        panel.add(visual, BorderLayout.CENTER);
                   else {
                      // do nothing
                   if ((control=player.getControlPanelComponent())!=null)
                        //controlHeight=control.getPreferredSize().height;
                        //panel.add("South", control);
                   validate();
                   repaint();
              else if(ce instanceof EndOfMediaEvent) {
                   player.close();
                   player.deallocate();
                   panel.removeAll();
                   nextMedia(currentsong=(currentsong+1)% urls.length);
              //System.out.println("\n " + urls[currentsong] + " : " + ce.toString() );
              //else if ( ce instanceof FormatChangeEvent){}
    }By the way thanks Stefan for being supportive

  • How to use the set full screen mode ?

    hai...i' a newbie ..i hav one question ...how to use the set full screen mode for my application..
    i found.
    public void setfullscreenmode (boolean mode)
    but when try in my application it error and other
    canvas.setfullscreenmode(true);
    actually i don't know where i should put this code

    i also found the coding it use like
    setFullScreenMode (true);
    but when i apply it ..it error because cannot resolve the symbol.
    my question is which one i should use; declare the
    public void setFullScreenMode (boolean mode);
    first or use
    setFullScreenMode (true) ;
    or other way ..what i need to do to use setFullScreenMode

  • How to prevent full screen video in projector

    I'm creating a flash presentation as a standalone Projector in full screen mode...
    stage.scaleMode = "noScale";
    stage.displayState = "fullScreen";
    Problem is that I want to have small video players in this full screen Projector, but I DO NOT want the videos to display full screen. I want the videos to display at their preferred size. However, since the stage mode is full screen, the video automatically goes to full screen as well.
    How do I prevent this?
    Thanks

    my_FLVPlayback.fullScreenTakeOver = false
    So obvious I could kick myself.
    PS - Adobe pay-per-incident technical support = useless. Don't pay some guy who doesn't know the program to look up keywords in the help.

  • How to set multiple home pages, the option is gone (replaced my hard drive and had to reinstall firefox) This version seems to only offer tabs, not pages?

    My old version of Firefox had the option for me to set multiple home pages. My hard drive recently failed and had to be replaced, so I had to install the newest version of Firefox. The only option I see when I go to tools, options, general is to set the one home page. (and maybe tabs) I would like to open several of the same pages every time I open my Firefox. Does anyone know how to get this back, or which version had this feature so I can downgrade to that particular version?
    Also, I was wondering if there is a way to get the bookmarks I had on the old version back. I think they are lost forever, but if anyone knows, I would be thankful. I do still have the old hard drive, but the way it failed was actually when you tried to open any browser, the hard drive would go and blue screen, this is why the old hard drive had to be replaced. Thanks. :)

    So you mean you want to open new windows with the same page when you open Firefox?
    [[How to set the home page#w_set-more-than-one-website-as-your-home-page|Set more than one website as your home page]] should help if you want to open multiple pages when you open Firefox.
    As for recovering your bookmarks, you can try to plug that hard drive into a working computer, and then read [[Recovering important data from an old profile]] to copy your bookmarks from it. However, if it is failing you may not be able to do that.

  • How to enter full screen mode in email?

    Can we enter full screen mode when reading an email in landscape mode? I can see safari has already provide this feature. It is really useful for reading  wide pages using iPhone 5 with a longer screen. But I don't know how to use this feature for email. In landscape mode, there are 2 email menus plus the system bar, which occupy too many screen. Any idea on how to enter full screen mode?
    Thanks.

    Ok, hope this will be added in the next release.

  • 'Full Screen Logo Display' interferes with Windows 8 bootscreen

    Is this behaviour normal?
    The MSI screen shows up after powering on, then it flickers once, and only the moving circle is shown on top of the MSI screen. See attachment.
    Windows does boot correctly, no other issues than this graphical glitch.
    I know I can disable 'Full Screen Logo Display', but I find it strange how it works.
    I'm using a B85M-G43 w/ latest bios.
    Anyone else having this?

    Quote from: xmad on 21-August-13, 23:45:37
    Enable win 8 mode and fast boot and you won't see that screen at all
    Am I wrong, or to enable windows8 mode, need gop bios installed on the graphics card !?

  • How do I rotate a page displayed on the internet?

    How do I rotate a page displayed on the internet? I am trying to read an online chapter from a book but it is the wrong way round?

    Are you trying to take a screen shot?  If so, Click the On/Off button while holding in the Home Button.

  • How to exit full screen mode mail message

    Inexplicably, when i open messages in Mail, they appear in something like full screen mode.   The message viewer window is not in full screen mode, but if i open any message, the message takes up the whole screen. I can drag the message in order to see other things on the desktop, but i can't adjust the size of the window to the size i want, and see no way of exiting full screen mode. I lookd in Help, but it only shows how to enter Full Screen, not how to exit it. 
    In the View menu, there is an option to enter full screen.  When i have the full screen sized message open on top, the enter full screen option in the View menu is greyed out.  If i have the normal sized window for the message viewer window on top, the enter full screen is not grayed out and could be selected.  I do not select it since there appears to be no 'exit full screen' option that i can see and i don't want to multiply this problem.
    I know this might be a silly question, but if they have an enter full screen option, why wouldn't they also have an exit full screen option? 
    Or is there an exit full screen option which exists somewhere that i have not been able to find?  I've searched Apple Discussions and Google but so far have not found a way to un-full screen my Mail messages.  This started this morning.
    Can anyone help?  
    I do not know how it got into full screen mode.  It was not something i did deliberately or knowingly.
    i have tried quitting and restarting Mail but the full screen message mode returns. 
    How can i get my mail messages out of this very annoying and awkward screen hogging mode?
    I have only been using Mail since last November when i got a new MBP with Mountain Lion, which meant that for the first time since 1995, i could not use the simple straightforward faultless Eudroa anymore.  So i have had my struggles with Mail.  Trying to get through it.  This is the most recent of various similar issues, inexplicable problems without apparent solutions.  Sort of Microsoft-like.
    I will be really grateful for any help.. thanks

    Press Control + Command + F on your keyboard to enter or exit full screen mode.

  • How to set custom master page for social/sites.aspx in sharepoint 2013

    How to set custom master page for social/sites.aspx in sharepoint 2013.?
    File path is
    C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\FEATURES\SocialDataStore\SocialDataStoreList\sites.aspx
    Thanks in advance

    Hi,
    You could open the sites.aspx in Notepad or SharePoint designer, and set the master page to your own master page directly via editing:
    <%@ Page language="C#" MasterPageFile="~masterurl/custom.master"      Inherits="Microsoft.SharePoint.Portal.WebControls.FollowedContentWebPartPage,Microsoft.SharePoint.Portal,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c"
    %>
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to set the screen size with nested Iview screen

    Can someone show me how to set the screen size with nested IView  screen.
    at the moment i only try it with trial and error untill it looks somewhat close. Is there a property in VC to set the size for Height and width.
    The same question is for the form. the form elements inside the form is easy but the actual form is still a challenge.

    Hi,
    Yes you are correct ,Still the Form and iview are not able to change thier Layout Structure using a Propery.
    it is available with VC7.1
    Govindu

  • How to set a default page setup in P6?

    Hi,
    Anyone know how to set a default page setup in P6?
    Thanks,
    Manuel

    Hi Manuel,
    For printing, the settings are stored within the layout. If you have one layout containing the settings you use, you can then use this layout as your template and do a 'Save As' every time you make your changes.
    Hope that helps
    David

Maybe you are looking for