This question is locked. New answers and comments are not allowed.
Dear Telerik Team,
I have bounded the dropdown like below,
I have bounded the dropdown like below,
@(Html.Telerik().DropDownListFor(m => m.BOUND_FLG)
.Placeholder(
"Select Bound Flag..")
.ClientEvents(events => events
.OnLoad(
"Areas.APUIAdmin.CostCodes.loadBoundFlag")
)
)
"Areas.APUIAdmin.CostCodes.loadBoundFlag" - it is my jquery call.
loadBoundFlag:
function (e) {
MOL.Web.Base.loadDropdownList(
'BOUND_FLG', AP_BOUND_FLAG);
}
My drop down gets populated.
I am getting the dropdown list values from a .JS file.
var
AP_BOUND_FLAG = [{ "Text": "I - Inbound", "Value:": "I" }, { "Text": "N - Not Applicable", "Value:": "N" }, { "Text": "O - Outbound", "Value:": "O"}];
But when I try get the selected value in controller. I am able to get.
Thanks in advance.