I am trying to block a table row, but I am unable to do so. I am using jquery plugin, blockUI.
My code:
var dis_tr = $("input[name=abc]").closest('tr')
dis_tr.block({message: null});
Can anyone help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The problem was that, in case of table we can’t write anything except between td elements. And we can ‘t block whole row. Instead of this, we have to block each td element. For this, I have written new functions that uses blockUI’s block/unblock functions.