I am trying to use a Shuttle item with an apex collection but when I attempt to add my P10_SHUTTLE value to my apex collection via an On Demand Process, while having selected 3 values from left to right, nothing seems to get ported across to the collection.
Also, after trying to return the value back from the collection to the P10_SHUTTLE item, again, nothing returns again.
Is there something different when it comes to using a shuttle item with an AJAX on demand process?
For your information, I am using Dene's method of returning the values: see: http://apex.oracle.com/pls/otn/f?p=31517:106:::NO
I am basically using all the same code that Dene's example does
I am not sure if it's to do with the following process of returning the values to the shuttle as all my select lists work but the shuttle item refuses to do so, i.e.:
if(l_El){
if(l_El.tagName == 'INPUT'){
l_El.value = l_Value;
} else if(l_El.tagName == 'SPAN' &&
l_El.className == 'grabber'){
l_El.parentNode.innerHTML = l_Value;
l_El.parentNode.id = l_ID;
}else{
l_El.innerHTML = l_Value;
}
}
With this code, do I need to do something different for Shuttle items, i.e. the tagName as I have also added == 'SELECT'
I'm stumped as to why I am having issues with Shuttles and Ajax.