Hi guys!
I am trying to develop a simple application where we have list of students. For each student I am displaying information on a separate page. Do you have any idea how and if I can pass parameters between regions on the same page? I have a view showing student id, name etc. information, and I want to create another view, on the same page, which will take student's id and will return a list of his/her subscribed courses.
Part of my database is something like this:
-------------
Students
------------
Id (PK)
------------
-----------------------
Student_course
-----------------------
Id(PK)
Student_id(FK)
Course_id(FK)
----------------------
----------------
Courses
----------------
Id(PK)
Have you got any clue how this can be done? I found information how to pass parameters between pages, but not on the same page.
Thanks in advance!
P.S. I am using Application Express (declarative progamming via web browser), using Application Builder.