Donot allow Checkbox to uncheck

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sva0008
    New Member
    • Apr 2008
    • 19

    Donot allow Checkbox to uncheck

    Hi,
    I want a checkbox in such a way that if it is uncheck the user can check it.
    but if it is checked the user should not be able to uncheck it .
    can anyone please help.

    Regards
  • deric
    New Member
    • Dec 2007
    • 92

    #2
    Can you use JavaScript on this?
    You can use the OnClick event of the checkbox item.. like
    Code:
    onclick="javascript:this.checked=true;"

    Comment

    Working...