checkbox problem.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,

When I use ENABLE property of checkbox set to FALSE at the c# level (server side). I’m not able to change the DISABLE status of the checkbox at javascript level (client side).

Anybody can help

Thanks
 
Mac said:
Dear All,

When I use ENABLE property of checkbox set to FALSE at the c# level
(server side). I'm not able to change the DISABLE status of the
checkbox at javascript level (client side).

It's because the <input type="checkbox" > is embedded in a disabled span
tag.
Try using a HTML control instead of a Web Control.
 
Back
Top