I want to validate a TextBox as a required field if user checks any of the check boxes.
How do I validate the above requirement .Can anybody help?
Below is the View code snippet.
<div>
<div id="">
<input type="checkbox" id="partsChk" name="partsChk"/><label
class="enrollment_side">
Parts (including IRFs)
</label>
</div>
<div id="">
@Html.TextBox("PartsTitle","", new { @class = "enrollment_tbox", placeholder
= "Parts Contact Title (i.e. Parts Manager)" })
<br />
@Html.TextBox("PartsFirstName", "", new { placeholder = "First Name" })
@Html.TextBox("PartsLastName","", new { placeholder = "Last Name" })
@Html.TextBox("PartsEmpId","", new { placeholder = "BMW Employee ID" })
<br />
</div>
</div>
<div>
<div id="">
<input type="checkbox" id="salesChk" name="salesChk" /><label
class="enrollment_sidehdr">Sales – Coming in Q3 2014
</label>
</div>
<div id="">
@Html.TextBox("SalesTitle","", new { @class = "enrollment_tbox", placeholder =
"Sales Contact Title (i.e. Sales Manager)" })
<br />
@Html.TextBox("SalesFirstName", "", new { placeholder = "First Name" })
@Html.TextBox("SalesLastName","", new { placeholder = "Last Name" })
@Html.TextBox("SalesEmpId","", new { placeholder = "BMW Employee ID" })
</div>
</div>
<div>
<div id="">
<input type="checkbox" id="serviceChk" name="serviceChk" /><label
class="enrollment_sidehdr">Service – Coming in Q3 2014
</label>
</div>
<div id="">
@Html.TextBox("ServiceTitle","", new { @class = "enrollment_tbox",
placeholder = "Service Contact Title (i.e. Service Manager)" })
<br />
@Html.TextBox("ServiceFirstName", "", new { placeholder = "First Name" })
@Html.TextBox("ServiceLastName","", new { placeholder = "Last Name" })
@Html.TextBox("ServiceEmpId","", new { placeholder = "BMW Employee ID" })
<br />
</div>
</div>