Dear Respected Sir /madam
Refer
http://jsfiddle.net/32h5gs7o/5/
When I select Payment mode from dropdown I want to hide input=> chequeno
I tried
currentRow.find("td:eq(2)").text('');
this blanks the entire 2nd column of the current row
I just want to hide input with name Chequeno whenpayment mode id selected is 175
Chq No. (text should be display)
Chq No.
but input field chequeno attr will be hidden / none
I tried
$(this).find('.chequeno').val('999');
//NOT working
currentRow.find("table td .chequeno").attr('display','none'); //NOT working
PLease help
solved
currentRow.find(".chequeno").hide(); // working
http://jsfiddle.net/32h5gs7o/7/
thanks you