I wanted to remove the border in iframe (when opendocument url)

Hello
Recently, I customized the EIS system by using JSP langiuge
but, I had problem with the border in 'iFrame' Tag when opendocument url was used.
I executed the opendocument url in iFrame Tag. but iframe's border appeared.
I wanted to remove the border.  so,  I added frameboder =  'no' on attribute of the iframe.
but, border still remained.
** iframe tag**
<iframe id="layout" frameborder="0" framespacing=0 marginheight=0 marginwidth=0 scrolling=no vspace=0  src = "<opendocument url>">
I need your help. T . T

Yongho, It looks like you are posting your question on the "wrong EIS" page.  This is for Enterprise Inventory and Service Level Optimization.  I think you are referring to a different system.  Correct?

Similar Messages

  • I want to remove the border in iFrame when opendocument is used

    Hello
    Recently, I customized the EIS system by using JSP langiuge
    but, I had problem with the border in 'iFrame' Tag when opendocument url was used.
    I executed the opendocument url in iFrame Tag. but iframe's border appeared.
    I wanted to remove the border.  so,  I added frameboder =  'no' on attribute of the iframe.
    but, border still remained.
    I need your help. T . T
    Message was edited by: Yongho Park

    Yongho, It looks like you are posting your question on the "wrong EIS" page.  This is for Enterprise Inventory and Service Level Optimization.  I think you are referring to a different system.  Correct?

  • I want to remove the header and footer when printing from my mac, i can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?

    I want to remove the header and footer when printing from my mac, I can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?
    == This happened ==
    Every time Firefox opened

    Go to the "File" menu, then "Print." The window that appears will have three drop-down menus at the top.
    The first is labeled "Printer",
    The second is "Presets".
    The third is unlabeled but has "Copies & Pages" selected by default.
    Click on that third menu and select "Firefox" near the bottom of the list.

  • How can i remove the border of TextField

    Hi,first i set the border of textfield in my program now i want to remove this border and want to set the default border.how can i do that.
    thanks

    try this,
    UIManager.put("TextField.border", new EmptyBorder());
    or maybe set the border part to null. I think it works.
    by the way put this line right at the start of your program so that all text fields will be shown without borders.
    Jim

  • How to remove the border of a JSplitPane?

    Hello,
    I'm using NetBeans 6.1 under Mac OS X 10.5.5, JDK6. When I design my GUI, I want to have the splitpanes witouht border. On Mac and Linux it works fine, however, on Windows and the Metal-Look'n'Feel the borders are painted, although I set the border-property in the GUI-designer to "null".
    My question is, can I additionaly manually remove the border? I found [this sample|http://forums.sun.com/thread.jspa?forumID=57&threadID=566152], but I didn't really help me since I don't know how to handle UIResources...
    Thanks in advacne and kind regards
    Daniel
    Edited by: DnlLdck on Nov 7, 2008 7:16 AM

    I guess you could try overriding paintBorder to do nothing.
    If you post a SSCCE that clearly demonstrates your problem, more members are likely to take a look.
    To post code, use the code tags -- [code]Your Code[/code] will display asYour CodeOr use the code button above the editing area and paste your code between the {code}{code} tags it generates.
    I don't know how to handle UIResources...So take time out from whatever you're doing and learn how to use them. They're no different from other classes.
    db

  • I want to remove the COnlineBank, OnlineBank and csample applications from my application and web server.

    How can I safely do this on Solaris? I've tried "iasdeploy removeapp" and "iasdeploy removemodule" with no luck. I want to clear all of this demo stuff out to make both the web and app server look more production like.
    Thanks
    Eric

    Eric,
    these applications are applogics which are not controlled by the
    iasdeploy tool. Unfortunately, there is no tool available to remove
    these applications for you. What you can do is to manually remove all
    their entries, but be careful if you do that. If you remove the wrong
    keys you might break your ias installation, so be warned and make sure
    you backup the whole ias registry before attempting to remove anything.
    Eric Coleman wrote:
    >
    I want to remove the COnlineBank, OnlineBank and csample applications
    from my application and web server.
    How can I safely do this on Solaris? I've tried "iasdeploy removeapp"
    and "iasdeploy removemodule" with no luck. I want to clear all of
    this demo stuff out to make both the web and app server look more
    production like.
    Thanks
    Eric
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!--
    Han-Dat Luc ([email protected])
    Senior Consultant
    SUN Professional Services (iPlanet)
    o .
    o .
    O _ ____ _ _
    (_) _ \| | __ _ _ __ ___| |_ TM
    | | |_) | |/ _` | '_ \ / _ \ __|
    | | __/| | (_| | | | | __/ |_
    |_|_| |_|\__,_|_| |_|\___|\__|
    e-commerce solutions
    Sun Microsystems Australia Pty Ltd

  • I want to remove the monitor from my 17" Macbook Pro 2008 to use as an external for my Macbook Pro 15" 2012. How can I convert lvds to Thunderbolt and power the monitor?

    I want to remove the monitor from my 17" Macbook Pro 2008 to use as an external for my Macbook Pro 15" 2012. How can I convert lvds to Thunderbolt and power the monitor?

    It's almost impossible.  The new iMacs have a Target Display Mode, but it's built to do that.  Without ripping your screen out, finding an acceptable power supply, frame, and whatever electronics to convert a Thunderbolt signal to the screen, the cost will be much larger than buying a cheaper HiDef monitor that runs with an HDMI to Thunderbolt cable to your MacBook 15.  In fact, you can sell your 17" MBP for a lot of money, unless it's broken or something, buying you a really sweet monitor.
    By the way, I found your answer by searching this forum.  I would suggest using the search function here in the futuere.

  • Want to remove the default value of a column in a table

    HI
    I have a table called User_ind. This table columns have default values as 'n' like
    create table user_ind(
    ind_num varchar2(1)
    ,group_allowed varchar2(1) default 'y'
    ,view_allowed varchar2(1) default 'y'
    now i want to remove the default values How can i procede with this.
    Urgent .
    Thanks in advance.
    Chaitanya.

    In Oracle 9i you cannot remove the DEFAULT, you can only change it to null:
    alter table user_ind modify group_allowed varchar2(1) default null
    You can check it using this one:
    select table_name,column_name,data_default
    from user_tab_columns
    where table_name = 'USER_IND'
    Best Regards
    Krystian Zieja / mob

  • I keep all of my music on my iPod Classic. I inadvertently changed the sync setting on my iPhone 5 to sync the music with my phone. I am overcapacity and want to remove the music from my phone. How do I do that?

    I keep all of my music on my iPod Classic. In error, I changed the sync setting on my iPhone 5 to sync the music with my phone. I am overcapacity on my phone and don't want any music on my phone so I want to remove the music from my phone without disturbing my iTune music files on my PC and iPod. How do I do that?

    On your phone: Settings>General>Usage>Music...tap the Edit button...then the red minus sign. This will delete all music on your phone.

  • I want to remove the comments section

    hi this is my site http://demo402.businesscatalyst.com/news/company-announces-record-profits
    i want to remove the comments section . how i will do that

    If you're not familiar with HTML make sure you create a backup of the html in a text editor before editing, that way you can replace it later if you need to.
    What you want to do is go into the
    Site settings > Module templates > News Layouts > Detail layout.
    Click the html tab bottom of the editing window.
    Remove  the comment form div code which should look like this: starting with <div class="comment-form"> and ending with </div>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform2343" onsubmit="return checkWholeForm2343(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item">   <label>Was this helpful?</label><br />
        No   <input type="radio" name="Rating" value="1" />   <input type="radio" name="Rating" value="2" />   <input type="radio" name="Rating" checked="checked" value="3" />   <input type="radio" name="Rating" value="4" />   <input type="radio" name="Rating" value="5" />   Very   </div>
        <div class="item">   <label>Name (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="FullName" maxlength="255" />   </div>
        <div class="item">   <label>Website (optional)</label><br />
        <input maxlength="255" name="website" class="cat_textbox_small" />   </div>
        <div class="item">   <label>Email Address (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="EmailAddress" maxlength="255" />   </div>
        <div class="item">   <label>Enter Word Verification in box below</label><br />
        {module_captchav2}   </div>
        <div class="item">   <label>Comment (optional)</label><br />
        <textarea class="cat_listbox_small" name="Feedback"></textarea>   </div>
        <div class="item">   <input class="cat_button" type="submit" value="Submit" />   </div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">   //<![CDATA[
       function checkWholeForm(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += isEmpty(theForm.CaptchaV2.value, "Enter Word Verification in box below");if (why != ""){alert(why);return false;}return true;}  
    //]]>   </script>
    </form>
    </div>
    Then save.
    If you delete the wrong code, restore from the backup copy.

  • I want to remove the roll over effect from my promoted link.

    Hi,
    I want to remove the hover effect of tiles. I don't want the tittle to slide up when I mouse over the tiles. What will be the way to achieve this?

    Hi,
    There are two events fired, one is mouseenter and another one is mouseleave on the tiles. 
    You can achieve this by removing the mouse enter event with the following script. 
    $(".ms-tileview-tile-content").off('mouseenter');
    Please mark it answered, if your problem resolved.

  • I want to remove the credit on my account.

    I want to remove the credit on my account.

    If you want to remove the balance from your account and you can't spend it then you can try contacting iTunes Support (these are user-to-user forums) and ask them if they can remove it : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I want to remove the rental movie from my apple tv before its expiring time. Help?

    I want to remove the rental movie from my apple tv before its expiring time. Can someone help me?

    Put it in DFU and do an update. This will not only update it, but it will remove all settings. DFU =  hold menu+play while plugging it in.

  • Please i want to remove the old version of itune, the new version does not delete it for some reason , what i should do?

    please i want to remove the old version of itune, the new version does not delete it for some reason , what i should do?

    See https://support.mozilla.org/en-US/kb/firefox-no-longer-works-mac-os-10-4-or-powerpc
    Since you have a Intel Mac, if you can upgrade to OSX 10.5.x then you may be able to use more current releases.
    jscher2000, You should link to http://www.mozilla.org/en-US/firefox/all-older.html for 3.6.28 since the ftp is not mirrored.

  • How to remove the border from an AWT Component (specifically a ScrollPane)

    I've been trying to remove the border from an AWT ScrollPane, but having no luck.
    I've tried setting the bounds on the ScrollPane to get rid of the border:
    ScrollPane scrollPane = new ScrollPane();
    scrollPane.setBounds(-2, -2, getSize().width+4, getSize().height+4);
    I've also tried overwriting the paint method of the ScrollPane but it didn't draw anything:
    private class CustomScrollPane extends ScrollPane
         public void paint(Graphics p_g)
              super.paint(p_g);
              Graphics2D g2 = (Graphics2D)p_g.create();
              g2.setColor(Color.MAGENTA);     //tried magenta so I could easily see it
              g2.drawLine(0, 0, 0, getSize().width);
    Is there anything else I should try? (I wish AWT components had a setBorder method)

    Is there anything else I should try? (I wish AWT components had a setBorder method)Actually this probably isn't possible. One of the main drawbacks of AWT was that since everything is connected to peers, you can't actually draw over or customize the view of your AWT component.
    The only recommendation I might make would be that you could try creating Canvases around your ScrollPanel that draw over the border

Maybe you are looking for

  • How do I create dashboard report in SAP B1

    Hi , Currently I am  using SAP B1 8.81 PL-06 with cockpit enabled. By default we have got in bulit sales Analysis , customer aging and service call reports, but what are the way to create our own dashboard reports. Is there any sources or methods to

  • Illegal option: C

    Hi I have been trying to create a JAR file for a application I have been creating. Using the command line: cmf mainClass.txt example.jar *.class everything is created fine. However I double click on the new JAR file and nothing happens. the Javaw.exe

  • ECL Viewer + JT causes SAPGUI crash

    Hi Guys, we want to view JT-Files in SAPGUI640 but it will not work on two special machines. On those ones, you can choose a JT-File and while open it the whole SAP GUI crashes without any further error code or information. These are WIN XP SP2 machi

  • Retrieving table data from R3

    Hello! Because I can't get the SAP connector to work using SSO, I'm using the code from the PDK documentation with hardcoded login information. This is working, I get a connection to the R3 System. But how can I retrieve the data from a table? I want

  • Jdeveloper doesn't start after Weblogic upgrade.

    I had Jdeveloper Studio 11.1.1.3 and Weblogic 10.3.3 and everything was working fine. I upgraded WLS to 10.3.4. Now, Jdeveloper doesn't start. jdeveloper.exe doesn't give any error. But nothing happens. We can see the process in Windows Task Manager.