I am looking to set a text box value based on drop down list on repeating section and below is the code. I have achieved till populating the drop down value when adding rows but unable to assign value to text field.Need your help
NWF.FormFiller.Events.RegisterRepeaterRowAdded(function ()
{
var currRow = NWF$(arguments[0][0]);
currRow.find('.ddlAccessModulecssClass select').change(function(){repeatCableChanged(currRow.find('.ddlAccessModulecssClass select'));})});
function repeatCableChanged(cableLookup) {
bt1= cableLookup.val();
alert(bt1);
}
ddlAccessModulecssClass- Dropdown CSS class
displayMessagecssClass-Text field CSS class.
Thanks,
Nav
@Repeatsection