I use jsViews in my project and faced with the problem: When I change the value of input using JQuery the DOM is not changing.
I use custom tag:{^{edit NOTE holderWidth='90'/}}
,
pm.mACQUAINTANCE.Items[2].row.NOTE
in DOM is "1111"
on aspx page {^{edit}}
is tag
<input id="472_ACQUAINTANCE_NOTE" class="valid" name="NOTE472">
after $("#472_ACQUAINTANCE_NOTE").val("2222");
$("#472_ACQUAINTANCE_NOTE").val()
will "2222", pm.mACQUAINTANCE.Items[2].row.NOTE
in DOM is still "1111"
:( Help please