how can i multiply two column in collection .
hi
how can i use onBlur="javascript:amtItems()" in collection .
<script>
function amtItems(){
function getVal(item){
if($x(item).value != "")
return parseFloat($x(item).value);
else
return 0;
}
$x('c010').value = getVal('c008') * getVal('c009');
}
</script>
Manoj Kaushik