Startbeitrag von PETER ZHOUam 08.01.2010 08:14
Hi,
How to assign value from a javascript onto a webdev's control. e.g. EDIT control.
for example :-
a EDIT CONTROL named DATE1
w-language :-
DATE1 = Return_Value
in javascript ?
Regards,
PETER ZHOU
How to assign value from a javascript onto a webdev's control. e.g. EDIT control.
for example :-
a EDIT CONTROL named DATE1
w-language :-
DATE1 = Return_Value
in javascript ?
Regards,
PETER ZHOU
Re: Webdev & javascript
You'll need to figure out the Alias name of the control and use that in your javascript code to assign a value using something like;
var mycontrol;
mycontrol = .....getElementByID('A1');
mycontrol = 'test';
Again, something along that line. You can determine the Alias simply by hovering the mouse over the control and looking at the tooltip.
Cheers!
ken
von KenKnight - am 11.01.2010 18:20