Hello all.,

I have main window. From here once you click a "Estimate" link , it opens a 
pop-up window. Here I made some estiamtion and I want retain the value of 
estimation to already opened main window.

Main window already have Field called estiamte text fiels. While loading it is 
0. After  made estiamtion pop up window to be close and the value to be retain 
to main window.

Anybody can help me.


I have code below for clicking "Estimate" link in main window.

function costestimate() { 
    previewSummary = 
window.open("costestimate.do","previewwin","status=1,width=960,height=560, 
scrollbars=yes,resizable=yes,location=no");

   } 



In the pop up window while clicking "Ok" button this function is calling 

function SaveEstimate(){
document.forms[0].totalProjectCost.value = 
parseFloat(document.forms[0].totalEstimatedCost.value) + 
parseFloat(document.forms[0].totalResourceCost.value);

document.forms[0].action="SaveEstimate.do";
document.forms[0].submit();
}


"totalProjectCost" this property value I want to retain to main window.


Thanks in Advance
Senthil S
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient or received it in error, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
Please do not copy it for any purpose or disclose its contents.

Copyright Tarang Software Technologies Pvt. Ltd. 2004. All rights Reserved

Reply via email to