日期:2014-05-16  浏览次数:20688 次

ajax中关于combobox的属性设置
有如下一段ajax,想要实现只能从combobox的下拉框选择,不能编辑的功能。网上查了下说是style属性,设置了貌似也没有用。在ajax里面该怎样设置呢。
$(".changeLeader").click(function(){
$(this).parent().children().eq(1).html("<input name='newLeader' class='combobox' />");

$('.combobox').combobox({
url:'GetStudentServlet',    
valueField:"sno", 
                        textField:"sname",
 panelHeight:"auto"
});
})
Ajax ComboBox

------解决方案--------------------
配置一下combox的配置项forceselection:true