Hi, I am working on a webapplication, ( with Ajax & JSF) where I want to retrieve the value present in a
by using
in my javascript function. but this is always returning null. The <t:inputText > is present with in a <t:div>. Can you please let me know , how can I get the <t:inputText > value . I have the issue with both FF and IE 7.
Code:
<t:inputText id="starttimeScheduler" value="#{scheduledJobCreateEdit.startTimeDate}" style="width:165px; margin-left: 25px;" forceId="true" tabindex="112">
Code:
document.getElementById("starttimeScheduler")
Comment