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.
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...
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...
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...
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...
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...
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...
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"/>...
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...
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...
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...
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
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...
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)...
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...
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.
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.
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.