Getting A Javaobject Out Of A Jsobject
I have a Javascript function in my xhtml page that does the following: HTML FILE: function getData(){ var data = document.getElementById('data'); return data; } <
Solution 1:
There is no data
property.
Change it to returnedValue.getMember("value")
.
Post a Comment for "Getting A Javaobject Out Of A Jsobject"