Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a checkbox and your name. this is the code:

  <div class="type_wine">
      <div class="check_type">@Html.CheckBox(color, check, new { @class = "wine" })</div>                                            
      <div id="type_text" onclick="checkByName('@color')">  color  </div>
  </div>

I must to do the same then I clicked the text and then I click on check box, then I do a click in the checkbox all is ok, but I have a problem then I clicked the text, because the checkbox state is not changed can sameone help me?

share|improve this question

1 Answer

up vote 1 down vote accepted

You could try something like

<div class="type_wine">
    <label>
        <div class="check_type">@Html.CheckBox(color, check, new { @class = "wine" }</div>
        <div id="type_text">
            color
        </div>
    </label>
</div>
share|improve this answer
Thank you, but will be a problem if I have a list of checkboxes – Moraru Viorel Aug 6 '12 at 14:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.