We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Jquery hide a field idisplayed in specific column

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


1 Reply

SS Shereen Shajahan Syncfusion Team February 20, 2023 10:16 AM UTC

Hi Vikas,

Could you please confirm if the issue has been resolved?

Regards,

Shereen


Loader.
Up arrow icon