Hi experts,
I am using struts 2 framework, the problem is i want to get a auto completer
id(1,2,3,4) instead of getting value (apple,banana.....).
The code works fine, it gets only (apple,banna..........) but i want to get
the id(1,2..............)
function getFruits(fruits){
alert(fruits);
}
function registerFruits(){
var fruits = dojo.widget.byId('fruits');
dojo.event.connect(fruits, 'onValueChanged', 'getFruits')
}
dojo.addOnLoad(registerFruits);
<s:autocompleter name="test"
list="#{'1':'apple','2':'banana','3':'grape','4':'pear'}"
autoComplete="false" id="fruits"/>
Is there any way to get the id(key), i have tried
dojo.widget.byId('job').getValue(),
dojo.widget.byId('job').comboBoxSelectionValue.value..........but it wont
works........
Expecting your suggestions...............
Thanks in advance,
Regards Gopi.
--
View this message in context:
http://www.nabble.com/Struts-2-getting-Autocompleter-key-value-pairs-tp21829519p21829519.html
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]