我有jQGrid。有些列是edittype:“select”。
{label:"Student",name:"student_id",index:"student_id",editable:true,edittype:"select",editoptions:{dataUrl:"../ajax/selects/select_student.php"}},
在我的项目中,选择中的元素数量变得巨大,这导致可用性缺陷。 我想让添加/编辑表单中的选择更加智能化。为此,我尝试使用“选择”插件。 所以,我试试这个:
beforeShowForm: function() {
$("#student_id").chosen();
}
在此示例中,“student_id”是添加/编辑表单中选择元素的ID。
但没有效果。选择保持照常选择。未添加选择的功能。
我如何选择处理选择元素的添加/编辑表单?