Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code in XHTML:

<h:inputText value="#{SearchAction.lat}" id="lat">
            <f:ajax event="valueChange"  listener="#{SearchAction.findAddress}"/>
</h:inputText>

If I change the content of the input field, the listener gets called correctly.

However, on page load I call a javascript function that populates the input field with a new value and I could see the input field being populated but the ajax request doesn't get sent to the server.

Is there a distinction between user-provided values and javascript provided values?

-Majid

share|improve this question

1 Answer

up vote 1 down vote accepted

You need to programmatically invoke the change event afterwards in JS.

inputElement.change();
share|improve this answer
Thanks BalusC. Here is How I invoked the event: var elem = document.getElementById("search_form:lat"); if (typeof elem.onchange == "function") { elem.onchange.apply(elem); } – Majid Alfifi Feb 28 '11 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.