I have the following table report using the following query:
select id,
name,
telephone,
apex_item.checkbox2(1,id) as "Tick when Contacted",
apex_item.text(20,my_date) as "Date Contacted",
apex_item.textarea(30,my_comment,5,80) as "Comment"
from my_table
This report displays 10 entries, where the key is the flag assigned to F01.
My problem is that this is a table report using Oracle APEX_APPLICATION.G_F01.COUNT - how do I access the values โโof the textarea field, where "my_comment" is the user input value in the report, and not from the database column / table?
From what I see, it seems that this is a sequence problem, and if the entries you entered are not in the correct order, then the values โโare skipped.
I only check the boxes for lines 1, 3, and 5 and therefore expect to return values โโfor textarea fields that apply only to these selected lines.