hi,
Below getRimData() is a function which will call .
js file. It is included in
- Code: Select all
<html:select property="lbrokercd" value="" onchange="document.forms[0], '/ILICTreasury/banker-web/X32.do', this, 'IX3201')">
---------> IT IS WROKING WELL
<head>
- Code: Select all
function doAction(){
getRimData(document.forms[0], '/ILICTreasury/banker-web/X32.do',
this, 'IX3201');
}
</head>
<body>
<html:select property="lbrokercd" value="" onchange="doAction()" ----------> it is not calling getRimData ();
<body>
when ever the "doAction" is called it should execute the function "getRimData()".. but it is showing some error.
thx
HAN