我有這個MVC控制 這是我的控制obout MVC組合框中選擇的指數變化的情況下不工作
@Html.Obout(new Obout.Mvc.ComboBox.ComboBox("Country")
{
SelectedIndex = 0,
ShowSelectedImage = true,
ClientSideEvents = new ComboBoxClientSideEvents()
{
OnSelectedIndexChanged = "checkalert"
},
OnSelectedIndexChanged="checkalert",
ID = "Country1",
FolderStyle = "~/Content/Obout/ComboBox/styles/plain",
FilterType = Obout.Mvc.ComboBox.ComboBoxFilterType.Contains,
Width = 150,
Height = 200,
MenuWidth = 640
})
,這是我的js函數:
function checkalert() {
debugger;
alert(" change");
return '1';
}
我有一個錯誤,
Uncaught ReferenceError: checkalert is not defined
我需要觸發的checkalert()
功能時,選擇指數變化
爲什麼你需要組合框我沒有得到你的問題。 –
@LaxmanGite我需要使用這個組合框控件,需要調用改變了這個組合框 –