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!

Search results for query: *

  • Users: jagi
  • 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

    table view jsp page

    venu, exactly you are right; I figured it out by the changing the type=hidden to type=textbox, then I was able to see where the text box was and as u said it was not inside <td></td>. thanks guys
  3. jagi

    html form table

    I will look at the structure, its a local intranet application. I just wanted to make sure if many hidden fields in a form could cause such behavirour? thanks jag
  4. jagi

    html form table

    the following is the view source of the page <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <!-- insert meta data here -->...
  5. 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...
  6. 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...
  7. jagi

    Retrieve Table Column.

    thanx spewn. I thought of the same - but getElementsById() is not there, only thing is getElementById() and it returns one object only. Can u give me a hint how exactly i can use regular expressions. thanx a bunch again, all of you for replying.
  8. jagi

    Retrieve Table Column.

    Thanks guys, but let me explain my question again. my code: <table> <!-- This commented part is only a trial. <colgroup> <col id='col1'> <col id='col2'> <col id='col3'> <col id='col4'> </colgroup> --> <tr> <td name='col1'>row1col1</td> <td...
  9. 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...
  10. jagi

    pass table object.. to javascript function

    thanks cLFlaVA its working...
  11. 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...
  12. jagi

    check box issue

    I have a hidden field and checkbox whose names are generated dynamically with the values. the value of the key in code below can be +ve or -ve for example: say key=9 (+ve) hidden: name=unitRefunded9 checkbox: name=inputUnitIncluded9 say key=-9 (-ve) hidden: name=unitRefunded-9 checkbox...
  13. jagi

    check box issue

    thanks Its working I changed it to <input type="checkbox" name="inputUnitIncluded<c:out value='${lotListTO.primaryKey}' />" onclick="this.form.elements['unitRefunded<c:out value='${lotListTO.primaryKey}' />'].value=this.checked" />
  14. jagi

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

    Hi, Can anyone tell me the Steps to open a JSP as PDF from browser. Thanks.
  15. 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...
  16. 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...
  17. 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"/>...
  18. 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...
  19. 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...
  20. 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.

Part and Inventory Search

Back
Top