tags:

views:

31

answers:

1

I am try to disable some particular rows in a html table,by using rowObject.disabled=true; but it does not seems to be work?in each row some 5 columns are available(it contains radio and textboxes)...how can i do this? many thanks

A: 

If you want some form elements to be disabled, you must set the disabled property for each of them, placing it on their parent is not enough.

Victor Stanciu