i have one ponent OutputText , i want to change its value using jquery,
my ponent is,
<h:outputText id="txt_pay_days" value="0"
binding="#{Attendance_Calculation.txt_pay_days}"/>
thanks for any help...
i have one ponent OutputText , i want to change its value using jquery,
my ponent is,
<h:outputText id="txt_pay_days" value="0"
binding="#{Attendance_Calculation.txt_pay_days}"/>
thanks for any help...
Share Improve this question edited Apr 19, 2011 at 6:24 Jigar Joshi 241k42 gold badges409 silver badges446 bronze badges asked Apr 19, 2011 at 6:14 AnnuAnnu 5624 gold badges8 silver badges22 bronze badges3 Answers
Reset to default 7<h:outputText>
will be converted to <span>
in raw HTML So,
Use id of the DOM and play with jQuery
${"#txt_pay_days"}.text("New Value To Set");
The <h:outputText>
renders a HTML <span>
with the value as its body.
<span id="txt_pay_days">0</span>
The jQuery .val()
function works on HTML input elements like <input type="text">
only. The <span>
isn't an input element at all. Instead, you need to use the jQuery .text()
function.
$("#txt_pay_days").text("123");
try this..
$('#txt_pay_days').val('valueYouWantToInsert');