Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to set value in one column in Tabular form depending on other column?

dmarinov87Mar 8 2013 — edited Apr 2 2013
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
This post has been answered by Tom Petrus on Mar 8 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 30 2013
Added on Mar 8 2013
9 comments
956 views