I have some validation going on in javascript using a mapping Class provided by a third party. They recommended it be implemented using js. I have set up my project to call the function using this:
RequestContext.getCurrentInstance().execute("intersect()");
I am unable to figure out how to get this to return a value to the backing bean from the js. Does anyone know of a way to have the js function return a value to the backing bean after it has been excecuted? Is this possible?