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,