Forum Moderators: open
I am not expert in JS but looking for help to make
this possible if java script is needed here.
I have a Web page devloped with Text Boxes along with edit buttons.When i click the edit button another small
small edit box opens to edit that text box with fonts etc.How do make this happen that as I type text in the small edit button text window, simultaneously the main Web Page text box that is getting edited also receives the "SAME TEXT ON THE DISPLAY".
Kindly help,
Sam
I have tried this but needed to use a database, alot of javascript and continual page refreshes but even then it didnt work smoothly. (Although you can buy applets or active x components that can do the job for you).
Is this what you meant? I could post some of the code that i have written if you need it.
Ally
But let me be exactly clear what I am trying to acheive that is already happening on a web page that I am trying to acheive.
[ticoremarketing.com...]
if you are asked to login here are my login information,then on the home page click printable and then click create printable.It will take you to three diffrent pages with the continue button before we reach the page where
the edit button window inputs information at two differnet places.How is this working,Sir
userid = testuser
password = testuser
Thanks, eagerly waiting to hear!
SAM
To get the page to update automatically you will have to get the window that opened the popup to refresh automatically, or whenevr the user changes on of the values from the dropdown box.
This could be done by calling a function when the select boxes onBlur is called.
function update(){
window.opener.refresh;
//or
window.opener.location.reload(true);
//you will need to pass the variables regarding the option chose in to the original page.
}
I think it will be something like this, i havent tested it.
Is this something like what you wanted?