This topic is locked
[SOLVED]

 look up wizard

12/16/2009 5:34:48 AM
PHPRunner General questions
R
raykay author

gud day..how to add onchange event in the lookup wizard????..

like this...

<select name = "a" onchange="changeText()"></select>

tnx , tnx ,tnx

J
Jane 12/16/2009

Hi,
switch to HTML mode on the Visual Editor tab and add following code at the end of the page:

<script>

document.forms.editform.value_Fieldname.onchange = function()

{

changeText();

}

</script>
R
raykay author 12/21/2009

tnx jane..its help me alot...