Hi every one!
I use Apex 4.1.
My question is how can I set value of column in tabular form depending on other column?
I have tabular form and when I insert value in column Content, I want that value in column Note get changed with note, which is generated with pl/sql function (function return string if typed value is in range).
I tried to use javascript like
$('input[name=f02]').live('change', function(){
if($(this).val()!='1'){
$('input[name=f03]').val("test")}
});
for setting value of column note to test if typed value in column content isn't 1, but this code set value to all rows and I need to set only specifed row.
Can someone give me a some hint how to achieve this if it is possible?
Regards,
drama9346