I'm having a problem in ASP.NET MVC with DropDownList validation. I have two actions "Create". They are defined as follow:

public ActionResult Create()
    {
        var categoriasDownloads = from catDown in modelo.tbCategoriasDownloads
                                  orderby catDown.TituloCategoriaDownload ascending
                                  select catDown;

        ViewData["CategoriasDownloads"] = new SelectList(categoriasDownloads, "IDCategoriaDownloads", "TituloCategoriaDownload");

        var formatosArquivos = from formatosDown in modelo.tbFormatosArquivos
                               orderby formatosDown.NomeFormatoSigla
                               select formatosDown;

        ViewData["FormatosArquivos"] = new SelectList(formatosArquivos, "IDFormatoArquivo", "NomeFormatoSigla");

        return View();
    }

and the second action Create is:

[HttpPost]
    public ActionResult Create(tbDownloads _novoDownload)
    {
        TryUpdateModel(modelo);
        TryUpdateModel(modelo.tbDownloads);

        if (ModelState.IsValid)
        {
            modelo.AddTotbDownloads(_novoDownload);
            modelo.SaveChanges();

            return RedirectToAction("Sucesso", "Mensagens");
        }

        return View(_novoDownload);
    }

The problem is: When a try to validate, the validation does not occur. I'm using Data Annotations to validate, but i have not been sucessful.

What should i do?

Thanks

link|improve this question
1  
post your Data Annotations code please – Arief Oct 29 '10 at 14:09
feedback

2 Answers

The validation occur but you are validating the wrong object.

WRONG:

TryUpdateModel(modelo);
TryUpdateModel(modelo.tbDownloads);

CORRECT:

TryUpdateModel(_novoDownload);
link|improve this answer
The problem persists... – Fabricio Sanchez Nov 1 '10 at 12:23
please post also the tbDownloads class (the class where you have specified the validations) and the view Create.aspx – Bugeo Nov 2 '10 at 16:54
feedback

$.validator.addMethod("selectNone",

        function (value, element) {
            return this.optional(element) || element.selectedIndex != 0;
        },
       "Please select an option."
    );


    $(function () {
        $("#form1").validate({
            rules: {
                ProductCategoryList: {
                    selectNone: true
                }

            },
            messages: {
                ProductCategoryList: {
                    selectNone: "This field is required"
                }
            }
        });
    });
link|improve this answer
use this jquery validation on ur page – yogee Feb 14 '11 at 11:32
feedback

Your Answer

 
or
required, but never shown

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