I'm porting an existing site. in MVC
When the DropDownList Change event fires, I need the DDL to call an existing Function:
This DLL works, but the Change doesn't work, but lets you see the function I need to call:
So the DLL needs to send itself to "CCCOnline.changeAccount(this);"
When the DropDownList Change event fires, I need the DDL to call an existing Function:
This DLL works, but the Change doesn't work, but lets you see the function I need to call:
@(Html.Kendo().DropDownList() .Name("clientMenu") .BindTo(Model.ClientAccountList) .DataValueField("Serialized") .DataTextField("Display") .Events(e => e.Change("CCCOnline.changeAccount(this);")) .Value(selected))So the DLL needs to send itself to "CCCOnline.changeAccount(this);"