I have a simple dropdown and it works in Chrome however Firefox seems to cache the last value of the dropdown selection even after reloading the page
Kendo version 2014.3.1119
Firefox 35.0.1
                                @(Html.Kendo().DropDownList()                      .Name("unit-selection")                      .DataTextField("Text")                      .DataValueField("Value")                      .BindTo(new List<SelectListItem>() {                          new SelectListItem() {                              Text = UtilSummary.Count,                              Value = "Count"                          },                          new SelectListItem() {                              Text = UtilSummary.Minutes,                              Value = "Minutes"                          }                      })                      .Value("Count")                    )Kendo version 2014.3.1119
Firefox 35.0.1
