Reputation: 1120
I am working in Oracle Apex .i want to add TextBox i-e Disease
from AddNew Button because i have Multiple Entries for one TextBox
.The entries will be selected from another table through POPUP LOV
. Below is the picture.
Upvotes: 1
Views: 1009
Reputation: 60262
Since you want to use a single column "DISEASE
" in your treatment table, you can use one of the list item types that support multiple values (generally separated by colons (:)) - for example, a Shuttle.
Upvotes: 1
Reputation: 12552
I don't think I can explain it step by step here, but it sounds like you could make use of a Tabular Form in your case.
In a Tabular form, you can dynamically add-update-delete new rows with a button, and for each field you can have Popop LOVS or Comboboxes to select data from.
Here are a few things to note:
When you insert a Tabular Form in your page, you'll instantly get three processes; one for Automated Row Fetching and two for save-update operations. By default, these processes are triggered through a button. You might want to change that since you have other items to submit in your page.
In a tabular form, you define a SQL query and the resulting columns of that query becomes your fields. For each field, you can select whether you want it to be a Combobox, Popup LOV etc.
Upvotes: 1