Change height of iView Tray

Hello,
I would like to change the height of the iView tray, but I can't find any setting for this under  System Administration -> Portal Display -> Theme Editor.
I could change the size of the icon, but if the icons are not visible the size of the tray is smaller.
Does anybody have an idea on that.
Best regards,
dominik

Hello Sandeep,
thanks for the fast reply. However I don't want to change the height of the iView but the height of the tray.
Regards,
dominik

Similar Messages

  • How to set the size for height of iView tray?

    Hi,
    I have created a ABAP webdynpro component and integrated this comp with iView. Then i integrated iView into Page in portal. That is working fine.
    But the size of tray/window which is displayed in the page is very small.
    How to increase the height of that Tray/window/iView containing my component?

    Hi,
    By changing the maximum automatic height and Minimum automatic height property of the iview you can set the size for height of your iview.
    to do this follow the setps:
    goto content administrator -> portal content -> your folder where you created your iview or directly to your iview -> right click -> open -> object,
    and now in property category choose appearance-Size from the drop down menu and set the above properties to your required height.
    if you want the end user to modify this property set the property to read/write .
    *********please reward points if the information is helpful to you********************

  • Change Font Size of iView Tray Header

    Hi All,
    I need to change the font size of the iView Tray Headers in my Portal and I can't seem to find this property in the Theme Editor.
    I have had a look at the following threads: How to make iview header ? and Changing the font size of the iview tray but I haven't had much luck.
    It is such a simple task so I'm really hoping one of you will have the answer!
    Thanks,
    Bim.

    hi,
    u can refer this document for more information for how to change the tray header text size
    in addtion to the above content as the person says that  in complex..
    http://www.sapdesignguild.org/resources/ma_guidelines_3/ma_guidelines_3.pdf
    http://www.sapdesignguild.org/community/design/print_layout2.asp
    mean while i wll send one more for u i saw previously
    ravindra
    Edited by: VENKATA R BOLLAPALL on Sep 29, 2009 5:53 PM

  • Portal Branding problem - line below iView tray

    Hello,
    I am using the Portal theme editor to create a custom portal theme. So far, I have been able to change the colors of every thing except one: "The line that runs below all the iview trays"
    For example, you can see this line in User Administration --> Identity Management -- On the right hand side - at the bottom of the Search iview.
    This thick line is a blue color line (in the SAP Tradeshow theme) - for which I have not found any option to change within the theme editor.
    We can hide this thick blue line from the iview properties - But I would like to change the color of this line rather than hiding it.
    I am using EP 7.0 EHP 1.
    Can some one please help me with this ?
    Thanks,
    Jaya

    Hi OJ,
    Thanks a lot for your response.
    Unfortunately, I do not have that option in the Theme Editor (for my version of portal which is EP 7.01 SP05). Infact I don't see the section for "Tray Footer".
    What version of portal are you using ?
    I have checked if there are any SAP Notes regarding this but none.
    Please suggest.
    Thank You,
    Jaya
    All that I have under Complex Elements -- iView Trays is the following:
    Tray Header
    Background Color of Header                   
    Font Color of iView (Tray) Name                   
    Font Weight of iView (Tray) Name                   
    Color of Tray Header Underlining                   
    Style of Tray Header Underlining                   
    Width of Tray Header Underlining                   
    URL to Header Image                  
    Position of Header Image                   
    Repetition of Header Image                 
    Tray Header Icons
    URL to "Menu" Icon                  
    URL to Disabled "Menu" Icon                  
    URL to "Collapse" Icon                  
    URL to Disabled "Collapse" Icon                  
    URL to "Expand" Icon                  
    URL to Disabled "Expand" Icon                  
    Height of Tray Icons                   
    Width of Tray Icons                   
    Position of Header Icons                 
    Tray Body
    Border Color of Tray Body                   
    Border Style of Tray Body                   
    Body Padding of Tray Without Border                   
    Body Padding of Tray With Border                 
    Body of Fill Tray
    Background Color of Fill Tray Type                   
    Border Width of Fill Tray Body                   
    URL to Background Image of Fill Tray Body                  
    Position of Background Image of Fill Tray Body                   
    Repetition of Background Image of Fill Tray Body                 
    Body of Plain Tray
    Background Color of Plain Tray Type                   
    Border Width of Plain Tray Body                   
    URL to Background Image of Plain Tray Body                  
    Position of Background Image of Plain Tray Body                   
    Repetition of Background Image of Plain Tray Body                 
    Body of Transparent Tray
    Background Color of Transparent Tray Type                   
    Border Width of Transparent Tray Body                   
    URL to Background Image of Transparent Tray Body                  
    Position of Background Image of Transparent Tray Body                   
    Repetition of Background Image of Transparent Tray Body     

  • How to implement a help feature in iView Tray

    How to implement a help feature in an iView Tray?

    Hi Gregor,
    Could the answer be connected to the class com.sapportals.portal.prt.component.SystemModes ?
    I can't really see how this class is called, but it gives the error message you are talking about
    The method doHelp for SP2 Patch3 is provided below
    public void doHelp(IPortalComponentRequest aRequest, IPortalComponentResponse aResponse)
            IPortalComponentContext context = aRequest.getComponentContext(IPOMConstants.DEFAULT_MODE);
            IPortalComponentProfile profile = context.getProfile();
            String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
            if(helpName == null)
                helpName = profile.getProperty("HelpName");
            String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
            String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
            if(context != null)
                if(helpName != null)
                    String componentName = context.getComponentName();
                    Locale locale = aRequest.getLocale();
                    String language = locale.getLanguage();
                    String helpPath = "help/" + language + "/" + helpName;
                    IResource resource = aRequest.getResource(componentName, "page", helpPath);
                    if(resource.isAvailable())
                        aResponse.addResource(resource);
                    else
                        aResponse.write("<b>Sorry, no help available.</b>");
                } else
                if(helpURL != null && helpURL.length() > 0)
                    if(helpURL.startsWith("http://"))
                        if(isolationMode != null && isolationMode.equals("URL"))
                            HtmlIFrame frame = new HtmlIFrame();
                            frame.setStyle("width:100%; height: 100%;");
                            frame.setSrc(helpURL);
                            aResponse.write(frame.toString());
                    } else
                        String componentName = null;
                        if(helpURL.charAt(0) != '/')
                            componentName = context.getComponentName();
                        } else
                            int componentNameIndexEnd = helpURL.indexOf('/', 1);
                            componentName = helpURL.substring(1, componentNameIndexEnd);
                            helpURL = helpURL.substring(componentNameIndexEnd);
                        IResource resource = aRequest.getResource(componentName, "page", helpURL);
                        if(resource.isAvailable())
                            aResponse.addResource(resource);
                        else
                            aResponse.write("<b>Sorry, no help available.</b>");
                } else
                    aResponse.write("<b>Sorry, no help available.</b>");
    The doOnNodeReady method is also rather interesting. Perhaps another way to solve it?
    protected void doOnNodeReady(IPortalComponentRequest request, IEvent event)
            NodeMode nodeMode = request.getNode().getNodeMode();
            if(nodeMode == NodeMode.HELP_MODE)
                IPortalComponentContext context = request.getComponentContext(IPOMConstants.DEFAULT_MODE);
                IPortalComponentProfile profile = context.getProfile();
                String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
                if(helpName == null)
                    helpName = profile.getProperty("HelpName");
                String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
                String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
                if(context != null && helpName == null && helpURL != null && helpURL.length() > 0 && (isolationMode != null && !isolationMode.equals("URL") || isolationMode == null) && helpURL.startsWith("http://"))
                    request.redirect(helpURL);

  • Show iView Tray in WPC

    Hi all,
    Does anyone knows how to show the iView Tray in web page composer (WPC)?
    When I drag and drop an iView to a WPC container, the tray doesn't appear.
    How can I solve this problem?
    tks

    Suresh,
    You need to go to System Administration, System Configuration, KM, Content Management, Web Page Composer, Containers.
    In each container you want to add iViews, change the "Allowed Content Types" parameter and check "iViews" in this parameter. This option allows you to add iViews into containers in WPC.
    Note: Be sure to check this option for all containers
    This might solve your problem, ok??
    Regards

  • Is there a way to change the default print tray on an HP LaserJet 500 color M551 Printer

    Hi
    Is there a way to setup the default print tray for a HP LaserJet 500 color M551 printer to be tray 2 printing both online and direct?
    If so what would be the best way to go about implementing it?
    Thanks
    This question was solved.
    View Solution.

    Usually, you can change the default paper trays through the control panel and through the Embedded Web server (EWS).
    Check the settings on your control panel. Here is a link to the User Guide, check out page 94 and see if that helps you out.
    m551 User Guide
    For the EWS, put the printer IP address into your browser, then go to the tab that would list tray settings. Not sure exactly which tab has it for this printer series, but on other printer series it is on the system tab under paper setup.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • Change Height of Web Resource to Get Rid Of Blank and Scroll Bar

    Hi, I am a junior CRM developer. I'm using CRM online.
    I wrote a HTML web resources. In Web Resource Properties, I set the Number of Rows as 20.
    But the problem is: If the form window are maximized, there will be blank under web resource; if the form windows become smaller, there will be a scroll bar on the side.
    I want get rid of blank and scroll bar, automatically change height according to the size of the window.
    I tried checkbox "Automatically expand to use available space", but it didn't work.
    I don't think add CSS to my HTML will work, because CSS in HTML will change the html height, not the container in CRM.
    Thank you in advance.

    You most likely have a malware infection. Run and update the following scanners. (Not all programs detect the same infection.)
    1. [http://www.safer-networking.org/]
    2. [http://www.malwarebytes.org/]
    3. [http://www.spywareterminator.com/]
    4. [http://www.microsoft.com/security/malwareremove/default.aspx]
    If those programs do not do the trick, try to post in the following forum:
    1. [http://www.bleepingcomputer.com[
    Other spyware removal forums can be found in a search.
    Does the issue occur in [[Safe Mode]]?

  • PanelStretchLayout: change height of the top facet

    Hi,
    I've defined a panelStretchlayout panel. In the top facet I've placed a ShowPanelHeader. What I now wanted to do is to change the height of top facet each time the showpanelheader is disclosed. Just to show some data.
    I've defined a disclosurelistener and I check when the disclosure event isExpanded() then the height should change.
    This is code:
    if (disclosureEvent.isExpanded() == true)
    { getPanelStretchLayout1().setTopHeight(300);
    getShowDetailHeader1().setInlineStyle("height:200px; width:300px;"); }
    else
    { getPanelStretchLayout1().setTopHeight(55);
    getShowDetailHeader1().setInlineStyle("height:55px; width:100px;");
    However nothing happens. Does anyone has a idea how it should work ?

    UIManager.put() is changing height of all tabs but i want to change height of only selected tab. Then you probably need to write your own TabbedPaneUI.

  • How to change height of Input/output field in dialog program

    How to change height of Input/output field in dialog program.
    I want to big message text box like e-mail message box.
    so could anybody help me on this please
    Thanks
    Basu

    Hi,
        This is not possible directly.Place the icon button in the table field.when u click on that button a popup window will appear in that window place the text editor there u can write text and u can save it ok..
    Award points if helpful.
    Kiran Kumar.G.A

  • Field lables changes in ESS iView not reflected on portal

    Hi All,
    I am trying to customize the SAP ESS Address DC (webdynpro Java) for South Africa region as per the SAP OSS note (No: 1428933).
    In order to incorporate the changes I have imported the ess/za/addr DC into NWDS. I have changed the label text as per the OSS note and deployed the DC but changes are not reflecting in the portal
    I did some more test on Label text;
    1. Removed the Label text property value from DC and deployed the application,  when I run the application during runtime screen is not showing any label text message for the label since I made it to empty.
    1. I added my custom text message to label text value instead of standard label text value and deployed the application, when I run the application during run time screen is automaticaly showing the standard label text value not my custom label text value.
    I'm trying to figure out from where these field labels value are coming from? Theoretically it should reflect field lables whats given in webdynpro but thats not the case here.
    From where Label field value is coming?. Help me out in this. Thanks,
    Regards, Suresh KB

    If you are just changing the field label the recommended approach is to do it through Web Dynpro UI personalisation.  DO NOT user NWDI to change the source code just for field label change.  The way you change through UI personalisation is locate the iView in portal content, and select preview of iView then use CTRL+RIGHT click mouse button on the field that you want to change the text, you will see properties of selected field in a popup window where you can change the default text.  Once you change it, and apply the changes you will be able to verify you changes in the iView properties (additional properties will be automatically created for the change you made).  Now check the personal data service under ESS role you should see the change.
    Hope this helps
    Siva

  • ESS--- Change own data iview

    Hi All
    How would i disable e-mail field on Change own data iview, I don't want employees to maintain the e-mail,they should only view their e-mail.They can  maintain the rest of the fields, Licence plate number, extension, room no....
    Appreciate your Help

    Hi Rajya,
      You have to change the webdynpro coding of the change own data application to disable the email field. You require the source code the NWDS to make the chagnes.
    Regards,
    Sharadha

  • Printing a Crystal Report changes the printers default tray setting every

    Hey,
    Hopefully someone have experienced this in the past,
    I am printing a Crystal Report, and in windows the printer has the tray auto as the setting. When I print from word, mspaint, or notepad, works perfect.
    But when I print via Crystal Report, it changes the deafult printers tray setting every time.
    Anyone have any idea, if there's a hotfix or something for this, I have problems at the client machine.
    Best Regards,
    Love

    I dont have much idea about CR 8.
    I would suggest you to try with No printer option.
    Try with this also:
    On Page setup click on printer ->Properties->Apply settings for default printer.
    Regards,
    Shweta

  • Navigation bar changes height randomly

    In the last few days I've noticed that my navigation bar is changing height at random. It has increased in height (my Back arrow is now an oval) but it will blink back and forth to its correct height at will. I haven't added any extensions lately...using Windows 7, 32...FF4.0.1.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • How to change default text in Tray UI ?

    Hi:
    The default text at the icon to collapse and expand tray are "Collapse Tray" and "Expand Tray" I want to change it, How can I do it?
    I read the API    and I can't find it. If you see the API's page it will be the icon's text next to "Item 1".
    Thanks a lot for your time on this thread.
    Rocío.

    Hi Armin, thanks for your answer.
    So, it's not possible to custom HTML renderer....am I right?
    Thanks again.
    Rocío.

Maybe you are looking for

  • Officejet Pro 8600 Plus scanner failure

    I have an Officejet Pro 8600 Plus all-in-one. When I first got it, all of the features worked fine: print, scan, and copy. A few weeks ago, it started to not scan or copy, and printer was hit or miss. I have managed to resolve the printing issue, but

  • Designing the SSRS 2012 report

    I want to design the SSRS 2012 like , Report for Supplier detail transactions, (user can select more that one supplier at a time) Every page should contain - (New page for new supplier/new transaction) Supplier Name : -                    Bank Name :

  • MicroSDHC iPad 3 Retina Ext. HD?

    I'm heading to Europe in 2 weeks for some skiing.  I'll be recording footage via this goggle cam.  I'll be using 32 GB MicroSDHC cards. Last time I did a trip like this, I brought a laptop to transfer the footage daily and then clear the card.  I don

  • Find and delete .DS_Store files

    I have a 2008 server where some mac clients connect. They create .DS_Store, ._.TemporaryItems and other files that starts with "._". I want to find them and delete them every night. What kind of script can I run. Thank you so much for your help.

  • Configuring Listeners error while converting single instance db to RAC +ASM

    Every time when I refresh the db with production db and try to convert to cluster db using rconfig I get this error. Verified xml file and every thing is correct in it. rconfig convertTOrac.xml Converting Database LABDB. to Cluster Database. Target O