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!

LOADING JSON DATA INTO APEX ITEM

Gor_MahiaNov 15 2014 — edited Nov 19 2014

Hi,

I've the below statement loading hardcoded json data into a variable which i use for "multiple data autocomplete" this is working but i want to replace the data source so it comes from table like "ename in emp table" so what i did is

statement to replace:

===============

  var availableTags = ["Apex 2.4.x", "ActionScript",  "AppleScript",  "Asp.NET",  "VISUAL BASIC"] ;

replaced by

========

   var s1 =  '[' + $v('P1_X2') + ']';

   var availableTags = s1;

    where  $v('P1_X2') i have loaded with the following values......  "ADAMS","BLAKES","CLARKS","FORD","GREG","JAMES","JONES","KING","MARTIN","MILLER","SCOTT","TURNER","paulkelly","",""

the change doesnt work with "multiple autocomplete" now so where is the issue here, any help ?

using oracle 11g2 & apex 1.4.4 not 12C

regards,

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 17 2014
Added on Nov 15 2014
2 comments
1,484 views