I have build a system which allows clients to complete a questionnaire. in order to complete the questionnaire the user has to enter their unique number which pulls their data from a different database using by a stored procedure.
Anyway what I am trying to do is when the client complete their questionnaire and click on create id like the cell/fieldset to be highlighted so I know which client has completed the questionnaire.
Still improving my front end development but could do with a bit of help. I only posted my front end (view) code because that is where work needs to be done.
Can anyone guide me with with the javascript/Jquery
<fieldset style="width:1200px;">
<legend>StoreQuestions</legend>
@Html.HiddenFor(model => model.storeId)
<div class="editor-label">
<h3>What condition was your Item in when you received it? (1 - Very Poor, 2 - Standard, 3 - Good , 4 - Excellent)</h3>
</div>
<input type="submit" value="Create" class="button">
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(StoreQuestions storequestions)
{
if (ModelState.IsValid)
{
db.StoreQuestions.Add(storequestions);
db.SaveChanges();
return RedirectToAction("Details", "Questions", new { id = storequestions.QuestionsId });
}
return View(storequestions);
}