How to load a specific view in a browser

Hi Guys,
      In my application, I hav 3 views..I need to set particular view at window level..So How can I do that..Thanks in advance

Good day,
Please check my reply in the following thread.
Re: Change of default view in a web dynpro window
Regards and Best wishes.

Similar Messages

  • How to add a specific view to a folder in Finder?

    Hello Everyone,
    I was wondering if there is a possibillity to add a specific view to a specific folder in Finder.
    I know this sounds abstract, let me explain:
    In OS 10.5 there are now 4 views for the Finder:
    - Icons
    - List
    - Columns
    - Cover Flow
    Usually I prefer icons, but for my movies and pictures folders I prefer Cover Flow.
    It would be handy to preset Cover Flow as view for the movies and pictures folders while other folders remain unaffected and still view as icons, instead of constantly having to change the view.
    Is there any way to accomplish what I am trying to do?
    Thanks Beforehands

    Lawrence,
    What you want to do is possible.
    Open your folder (the one you want to "customize"), then choose View>Show View Options. At the top, you will see a check-box labeled "Always open in xxx view," "xxx' being whatever view is currently set for the open window. Change the view on the window, using the icon in the Toolbar, to set your desired view, then enable the checkbox in the View Options. Close the View Options, then close the window.
    Initially, changing the view on this one window will change your view globally. Not a problem; just change the global setting back to your desired view when you open the next Finder window.
    Scott

  • How to load a specific set of classes at runtime.

    Howdy!
    I want to load all the classes in a directory that implement a specific Interface, at runtime. Of course i can load all the classes if i know the String name.
    Class t = Class.forName(ruleClass);
         cnst = t.getConstructor( new Class[] { Session.class } );
         try {
             Object obj = cnst.newInstance(new Object[] {            
                                              m_fwkSession });
             IRules rule = (IRules)obj;
                ...................where IRule is an interface.
    How do i get all the files in that directory and find the classes implementing that interfaces ?

    You can either load all the classes and then test if they are assignable from IRule.class (isAssignableFrom())
    (you could use a custom classloader if you wanted these classes to be garbage collected)
    or
    Open the class files and scan them to see if they contain
    "myPackage/IRule"
    (maybe you would have to parse the .class file, but just scanning it might be good enough)

  • How to enter a specific view size

    I'm brain dead for some reason. Where do you type in a value if you need to see the page a specific size? I want to view at 137% which I think is equal to actual size. I know if CS4 it was at bottom left but I can't find it in 5.

    Here you go:
    Bob

  • DTP: How to load a specific request?

    I have created a DTP between two InfoCube objects. I would like to perform full loads of only a few selected requests from the source InfoCube.
    I couldn't find the request number field in the DTP filter list. How can I accomplish my requirement?
    Thank you for your time.

    You cannot send request vise data.
    Experts correct me if I am wrong.
    Message was edited by:
            Jr Roberto

  • How to load the JSP Source Code from Browser

    I have made a program using JSP ( one file ) and Java Beans ( 2 files ).
    The processed in those JavaBeans files and for output to Browser using JSP File.
    And I'm using JBuilder7 Software for building my applicaton.
    I already tested my source through JBuilder ( Applet Viewer ) and my source is running well but I got problem when to load that JSP file through Browser ( IE 6 ) with URL.
    Can anybody help me with this ?
    Best Regards,
    Yeppy S.

    I have made a program using JSP ( one file ) and Java Beans ( 2 files ).
    The processed in those JavaBeans files and for output to Browser using JSP File.
    And I'm using JBuilder7 Software for building my applicaton.
    I already tested my source through JBuilder ( Applet Viewer with TOMCAT Virtual Machine ) and my source is running well but I got problem when to load that JSP file through Browser ( IE 6 ) with URL.
    I put my source at F:\Source\Kiosk9 and my JSP file at F:\Source\KiosK9\defaultroot.
    And the JavaBeans Files at F:\Source\KiosK9\src\kiosk9.
    And the name of the package is kiosk9.
    My structure directory :
    F:\Source\KiosK9
    F:\Source\KiosK9\bak
    F:\Source\KiosK9\classess
    F:\Source\KiosK9\defaultroot
    F:\Source\KiosK9\src
    F:\Source\KiosK9\tomcat
    This directory structure was made automatically by JBuilder7 ( F:\JBuilder7 ).
    URL : http:\\localhost:8080\defaultroot\KiosK9Jsp.jsp
    And the error is :
    "Socket Error
    Connection refused by Remote Host"
    Can anybody help me with this ?
    Best Regards,
    Yeppy S.

  • How to set IE compatibility view programmatically in Browser Helper Object?

    Goal: In IE11, I need to set "IE=EmulateIE7" compatibility view for particular websites.
    Adding an HTML meta header or a HTTP response header is not an option as we do not control the websites. Configuring IE (Tools > Compatibility View settings...) is not fine-grained enough as it truncates the website URL to the second and top level domains.
    My approach is to achieve the same but more fine-grained with the help of a Browser Helper Object (BHO). Is this possible at all?
    I created a C# Hello World BHO according to an online sample. It works in IE9. I haven't tested it in IE11 yet. Now I need to add some flesh to the bone. My idea is to register with the appropriate WebBrowser event, check the URL being retrieved, and then
    set a WebBrowser property to turn on compatibility view if necessary.
    Is this feasible?
    Which WebBrowser event would that be? DownloadBegin or DownloadEnd? Other?
    pure guess: WebBrowser.PutProperty("X-UA-Compatible", "IE=EmulateIE7")?
    Any ideas to cut down my trial-and-error space? Thanks a lot!
    PS: I (prematurely?) posted this question last night on stackoverflow.com.

    The compatibility list is more about developer and user preference and Microsoft tends to not provide API to override preferences. 
    If the user accepts launching a separate window to render the content in some alternative browser (pretty much like viewing source in Notepad) you can modify the browser emulation registry value before launching your own webbrowser control based application. 
    Visual C++ MVP

  • How to Load SwingApplet in IE 5.0 Browser

    Hi, guys.
    I had a error that my SwingApplet cannot be instantiated.
    I found why this problems occurs and solved.
    MS IE 5.0 supports swing 1.1 so Applet compiled by Swing1.2 is not work properly.
    They have different swing mechanism, even you didn't use swing 1.2's component and method.
    So I compiled my classes with swing 1.1
    and then, It worked~!!
    (It's not need to setting, just down and run)
    I have used MS Java Toolkit to make .cab file
    (involved swing 1.1 class and my app class and class that MS VM not support)
    (It's kind of signed Applet just like ActiveX Download)
    this site will help you, M$ Site
    http://www.microsoft.com/java
    Remember~~!!
    If you had classpath swing1.2 class files, even your applet complied swing 1.1, it's not worked.
    Caution Your classpath.
    Well, I hope my humble Topic will help you.
    Richard Ahn
    South Korea

    Thanks for the tip.
    I need to use swing 1.1.1 wth jdk1.1.8 for an applet which is only 10K big. Do I need to download the whole swing.jar while launching the applet? I know it's a 2 MB file.

  • How to get column names for a specific view in the scheme?

    how to get column names for a specific view in the scheme?
    TIA
    Don't have DD on the wall anymore....

    or this?
    SQL> select text from ALL_VIEWS
      2  where VIEW_NAME
      3  ='EMP_VIEW';
    TEXT
    SELECT empno,ename FROM EMP
    WHERE empno=10

  • How to create a special view for sharepoint list A and deploy this view to specific user personal view?

    How to create a public view for sharepoint list A and deploy this view to specific user personal view? Is that possible OOTB?

    Views cannot be exported or moved. Can you elaborate your requirement?
    --Cheers

  • How do i disable orientations for a specific view in my tab bar project without disabling for the other views?

    How do i disable orientations for a specific view in my tab bar project without disabling for the other views?
    Any suggestions?

    Note that you can also hide the tab bar completely with code in the userChrome.css file.
    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #TabsToolbar { display: none !important; }
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • How to load external storage html file in web view

    hi all,
        how to load external storage html file in web view, please help me
       " ms-appdata://local/index.html" not working
    veerasuthan veerakesan

    It need be read as string. Then load the string by  Webview.NavigateToString.
    Sample as below
    string htmlstring = string.Empty;
    try
    var htmlfile = await Windows.Storage.ApplicationData.Current.LocalFolder.OpenStreamForReadAsync("a.html");
    using (System.IO.StreamReader streamReader = new System.IO.StreamReader(htmlfile))
    htmlstring = streamReader.ReadToEnd();
    webview.NavigateToString(htmlstring);
    catch(Exception ex)
    Debug.WriteLine(ex.ToString());
    在現實生活中,你和誰在一起的確很重要,甚至能改變你的成長軌跡,決定你的人生成敗。 和什麼樣的人在一起,就會有什麼樣的人生。 和勤奮的人在一起,你不會懶惰; 和積極的人在一起,你不會消沈; 與智者同行,你會不同凡響; 與高人為伍,你能登上巔峰。

  • I have home videos in iCloud.  How do I view them on iPad?  Tech said to load iTunes and view using that but there is no itunes for ipad.

    I have home videos in iCloud.  How do I view them on iPad?  Tech said to load iTunes and view using that but there is no itunes for ipad.

    You can download a complete iPad 2 User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
     Cheers, Tom

  • How can i load a specific CSS style sheet for Safari?

    Okay, So I have some structure issues when viewing my website on Safari compared to Firefox. Is there a way to put a code in the <head> tag to load a specific CSS style sheet for Safari like you can do with IE?
    Thanks.

    I took a screenshot of your page from Firefox (shown below).  I assume you're seeing the same problem in Safari.  If you increase text size one click, the keyboard image drops below the #contact division.
    1) Height is a restiction in all browsers except IE.  Avoid  using height values on containers with text in them.  If needed to show  a background image, use the min-height property.
    2)  Fix your code errors. Some browsers are very sensitive to errors.
    3)  Your #content lacks cohesion. You need 3 columns, each with a width in pixels.  Or simply use a 3-column table.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • How can I cancel a view from a specific material?

    hi all
    I need to delete a specific view from a specifil material (not the whole type).
    how can I proceed?

    Hi,
    MM06 is the Tcode for Flag Material for Deletion, You can mark the deletion by 1)Plant level, 2)Storage Location 3)Valuation type
    Sales org/Dist channel level, Warehouse level.
    Regards,
    BK

Maybe you are looking for