This question is locked. New answers and comments are not allowed.
Sir,
I have created a mvc razor(VS2010) page like formview.. It has controls like combobox, textbox and datepicker etc. In Combobox controls, i have default value and text.
Eg:
@( Html.Telerik().ComboBox()
.Name("drpAssetType")
.Items(item =>
{
item.Add().Text("").Value("");
item.Add().Text("Amortizing").Value("A");
item.Add().Text("Revolving").Value("R");
})
I can't get the selected value while fetching the value from database. Can you please give me the solution?
Regards,
Raj..