I declared a parameter in my model as
[Required]
public int? param{get; set;}
and defined it in the drop-down list. Everything works fine, and data validation works until I add a plugin, Chosen . When I add the plugin, there is no confirmation for the submission. How can I save data validation when a plugin is applied to a Select element?
source
share