How to set default item in HTML.Kendo().Dropdownlist().HTMLAttribute() ?
Although i have set it by code.But somehow its taking one default item from the list and showing it as first place.

May be its getting it somewhere from the code.But i am not able to finding out.And that's why i want to set the default item("--Select--") from somewhere else. And i am thinking about setting it from .HTMLAttributes().
Is someone knows its a correct way to do it or not ? If yes then how can we do that? Else no then is there any other way to fix it?
I am using below code to bind the Kendo Dropdownlist:
@(Html.Kendo().DropDownList()
.Name("SelectedMediaType")
.DataTextField("Text")
.DataValueField("Text")
.Value(Model)
.BindTo(ViewBag.MediaTypes)
)
In which i am binding Dropdownlist with ViewBag.MediaTypes .
So is there any way to set default value after binding with viewbag?