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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jagi
  • Content: Threads
  • Order by date
  1. jagi

    Browser File Size Limit.

    Hi, I have a static html page with file size 8MB. And it is taking more than a minute to load and taking 100% CPU usage ( 1GB RAM; CPU 2.4 GHz ). Can anyone please tell me what could be the maximum size limit for the browser, from which point the performance degrades etc.,? Thanx in advance.
  2. jagi

    html form table

    Hi I have a html(jsp) page which has few hidden fields and a table with 4 columns and rows(row size depends on the # of records in the db). Problem: As the no. of rows increase in the table I see the table moving slightly down the page creating empty blank space above it. I would like to...
  3. jagi

    table view jsp page

    Hi, I have a jsp page which has few hidden fields and a table with 4 columns and rows(row size depends on the # of records in the db). Problem: As the no. of rows increase in the table I see the table moving slightly down the page creating empty blank space above it. I would like to know why...
  4. jagi

    Retrieve Table Column.

    Can anyone tell me how to retrieve all the cells of a column in a table without having to traverse all the rows and all the cells. Right now I am naming all the cells under that column name='x', and then later doing document.getElementsByName('x') which i thought would work - but not wotking...
  5. jagi

    pass table object.. to javascript function

    Hi, I have a table shown below in a jsp page, I need that to be passed to a javascript function in a .js file included in the header. I tried as shown below(onmouseover) but could not get the object to the javascript function. any ideas?? thanks <form>.... <input type="submit" name="Save...
  6. jagi

    response.setContentType(&quot;application/pdf&quot;);

    Hi, Can anyone tell me the Steps to open a JSP as PDF from browser. Thanks.
  7. jagi

    response.setContentType(&quot;application/vnd.ms-excel&quot;)

    Hi, I have a jsp(original page), which has a link "Print as Excel" (sounds stupid - but i HAVE to be able to print it as excel). When the user clicks on this link, an almost invisible (zero height and width)popup window should open which opens the original page contents but with...
  8. jagi

    Save HTML without SaveAs Dialog.

    Hi, I want to save the HTML file without popping SaveAs Dialog. function doSaveAs(){ if (document.execCommand) document.execCommand("SaveAs",false,'summaryHTML.html'); }; But the above code is still popping the dialog. I even tried with 'null' and 0 in place of false. But it...
  9. jagi

    javascript set value

    Hi, I have a hidden field and a check box, I want to change the value of the checkbox onclick event, but for some reason the value is not getting set. could somebody tell me if I am doing anything wrong..?? thanks jag below is the code.. <input type="hidden" name="unitRefunded" value="false"/>...
  10. jagi

    Saving dynamic content in HTML.

    Hi, I am generating a HTML table dynamically with the following code: for(i=0; i<noRows; i++) { current_cell=document.createElement("TD"); current_text=document.createTextNode('-'); current_cell.appendChild(current_text); row.appendChild(current_cell); } I call this function onload. The...
  11. jagi

    Pass Event Object between frames.

    Hi, I have two frames in a window. The 'onscroll' event of a DIV in one frame should cause an offset in the DIV element of the other frame. frame1 -> div1 ( when scrolled should cause an offset in ) frame2 -> div2 In other words, I need to be able to synchronize DIVs in two different...
  12. jagi

    Curved Edges for a Window.

    hi, Can anyone tell me how to get curved edges for a window(pop-up window in this case)? Thanks.
  13. jagi

    Print Window with Horizontal Scrollbar.

    Hi, I have a window with horizontal scrollbar (no vertical scrollbar). When I do: function printWindow() { bV = parseInt(navigator.appVersion); if (bV >= 4) window.print(); }; It simply chops off the content on the right end and prints only what fits in one page. I would like to print...
  14. jagi

    no. of hidden fields in a jsp..

    Hi, I would like to know if there is any limit to the no. of hidden fields in a jsp page. What effect does the page/browser have if there are many hidden fields(like about say 50) in a single page. any ideas. thanks jag
  15. jagi

    Window with Horizontal Scrollbar.

    Hi, I have a window with horizontal scrollbar (no vertical scrollbar). When I do: function printWindow() { bV = parseInt(navigator.appVersion); if (bV >= 4) window.print(); }; It simply chops off the content on the right end and prints only what fits in one page. I would like to print the...
  16. jagi

    Get all array indices?

    Hi, I have an object array to store all the text-boxes that have been changed. (cell-ids along with values) The function looks like this: function fnEditData(textObj) { var parentTDCell = textObj.parentNode; textValObj[parentTDCell.id] = textObj.value; computePltTotals(textObj)...
  17. jagi

    Export Html table to Excel Sheet.

    Hi all, Can anyone give me some links that can help me understand how to export HTML table to Excel Wroksheet? Actually I have an option for the user to save the page with table and I would like to save it as an excel file when the user clicks on 'save'. Can anyone tell me how I can achieve...
  18. jagi

    Print the entire content of a scrollable table.

    Hi, I have a table inside a divsion with srollbar. When I say window.print(), I am just able to print the page as it is with scrollbars. I would like to able to print the entire content of the table. Can anyone help, please... Thanks in advance.
  19. jagi

    Print all rows and columns in a table with scrollbar.

    Hi, I have a table inside a divsion with srollbar. When I say window.print(), I am just able to print the page as it is with scrollbars. I would like to able to print the entire content. Can anyone help, please... Thanks in advance.
  20. jagi

    How can I force my table cell to have a specific width always.

    Hi, I have a table inside a div. The division has intial width. If the table stretches beyond this width, the division should get a horizontal scrollbar. And the width of the table cells should not change their width. But whats happening is that the cells are getting compressed. I was able...

Part and Inventory Search

Back
Top