Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ashpassword

  1. ashpassword

    How can I put Progress bar for my new window(child)?

    In My New Window I want to display some progress bar or showing some messages like "Generating..." before generating PDF and HTML document. I am opening a new window as follows: var ScreenWidth=window.screen.width; var ScreenHeight=window.screen.height; var movefromedge=0...
  2. ashpassword

    Printing in Netscape 6, HTML document.

    I am facing one problem regarding printing an HTML document in netscape 6. Actually I have a document which is almost of three pages(A4 size), that document I am opening in new window through window.open(URL,.....) script. And when I tried to print this document through browser's print...
  3. ashpassword

    Printing in Netscape 6, HTML document.

    I am facing one problem regarding printing an HTML document in netscape 6. Actually I have a document which is almost of three pages(A4 size), that document I am opening in new window through window.open(URL,.....) script. And when I tried to print this document through browser's print...
  4. ashpassword

    How to put progress bar in a new window?

    but it is giving me access denied for it.
  5. ashpassword

    How to put progress bar in a new window?

    I am opening a new window where I want to show a progress bar before showing my document as it tales some time to generate, so how could I achieve this. As I am opening anew window as follows...
  6. ashpassword

    How to cope up with different resolution of the browser?

    Hi I am generating HTML report and whole HTML code is generated through Oracle Report Server 6i, only before the code and after the code I can add some HTML tags like table, div etc to handle my problem. What my problem is my data content are wrapped while viewing in different resolution of...
  7. ashpassword

    How to add Scrollbars in atable?

    How can I add scrollbars in a table? So that my contents in it not get disturbed as per the clients machine screen's resolution.
  8. ashpassword

    How to get view only element using Javascript from HTML page?

    For Netscape 6 and above. I have an HTML page on which I am showing some values which I view only. From this page I want to get the values through javascript, for that I have written following line of code: var data=document.getChildren(TxtTxnIdObj).item(0).innerText; Where...
  9. ashpassword

    Gaining Focus (Netscape 6.1)

    we are using IE 6 and NS 6.1 which we cann't change as requirement restricts. Now the problem we are facing is after validation of any field if validation fails we select the text and set focus to that field, now this is working fine in IE and in NS it selects the field but takes focus to next...
  10. ashpassword

    Removing Header and footer contents of Browser.

    So is there any work around for it?
  11. ashpassword

    Removing Header and footer contents of Browser.

    Hi, I want to clear browser's pagesetup(header and footer) through javascript. Actually I am generating report and giving user a click button to print it but by default it prints the document with header and footer along with Current date and Page Number which all I want to remove it. And will...
  12. ashpassword

    Calling javascript function through onload

    function forEnableDisable() { var objForm=document.reports; var lsDesValue=objForm.cmbDesFormat.value; if(lsDesValue=="PDF") { objForm.btnPrintReport.disabled=true; } else { objForm.btnPrintReport.disabled=false; } return true; }
  13. ashpassword

    Calling javascript function through onload

    Hi, I am facing problem in calling my javascript function through onload of the body as it works fine in IE but giving problem in Netscape 6. Through any other mean like button click it is being called and working. For onload call I have written as follows: <body topmargin=&quot;1&quot...
  14. ashpassword

    onChange() Event/function in Netscape not working.

    Ya I have written in the same manner but instead of sending my whole file which contains html tags and all, I sent u only the function. but i don't know why it is not working?

Part and Inventory Search

Back
Top