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!

APEX, JQuery and Session Variables

user2181160Jun 25 2013 — edited Jun 26 2013

Hi.

Great site here.  Been very helpful (better than the official documentation by a mile).

I have an application with two pages, and I need to preserve some of the dynamic elements on page 1 when the user leaves that page and then returns later to it.  I've tried creating application items and then mapping the code for my dynamic elements to these items using the below function (which I found online):

  function setAppItem(name,value){

    var a=new htmldb_Get();

    a.add(name,value);

    var r=a.get();

  }

The problem is I don't know how to get the application items upon returning to the page--I could find no code to simply retrieve my application/session item by name.  Is there perhaps a simple JQuery way to get and set application/session items (preferably without needing to use AJAX, but with is okay, too)?

Thanks very much.

JR 

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 24 2013
Added on Jun 25 2013
2 comments
953 views