| Author |
How do I find out text-change in readonly text box ?
|
Deepa More
Ranch Hand
Joined: May 22, 2006
Posts: 68
|
|
Hi all, I wanted to call one function on text-change of read only text box. Its a readonly text box for date field. Date is selected by button besides it which opens calendar.When date is changed, I wanted to recalculate time field. How do I do that? Any help is appreciated.
|
 |
bhuvan sundar
Ranch Hand
Joined: Mar 02, 2005
Posts: 104
|
|
try this: function setDate() { document.form.textbox.value = selected date; document.form.textbox.focus(); } function calTime() { //do your calculation } Call setDate() in the onClick of the button and calTime() in the onFocus of the textbox. Hope this helps you..
|
 |
 |
|
|
subject: How do I find out text-change in readonly text box ?
|
|
|