我正在开展一些项目,我需要根据网格中的Degree过滤学生。我有一个下拉列表,它从DB加载所有度数列表,下面是图像。但问题是默认情况下会选择第一个值而不像其他下拉菜单会有默认文本,如 - 请选择 - 等等。有没有办法创建那种东西。我使用过map&列表加载下拉。这是我到目前为止所做的。任何帮助都会帮助我。
colModel : [ {name : 'usn_number',index : 'usn_number',searchoptions: { sopt: ['eq'] },width : 20},
{name : 'first_name',index : 'first_name',searchoptions: { sopt: ['eq'] },width : 35},
{name : 'course',index : 'course',width : 20,stype: 'select',searchoptions:{value:getOptionsList(),
sopt:['eq']}},
{name : 'semester_name',index : 'semester_name',search:false,width : 20},
{name : 'address',index : 'address',search:false,width : 30},
{name : 'mobile_number',index : 'mobile_number',search:false,width : 20},
{name : 'id',index : 'id',align : "center",sortable : false,search:false,align : 'center',
width : 15,formatter : controlFmatter}
],
定义函数getOptionsList(),
function getOptionsList(){
$.ajax({
type: "POST",
url:'loadDegreeList',
async:false,
dataType: 'json',
success: function(data){
options=data.degreeListMap;
},
failure :function(xhr,status,msg) {
alert("Unexpected error occured. !!!"+msg);
}
});
return options;
}
谢谢
答案 0 :(得分:2)
我正在使用SpringFramework。我像这样在Controller中创建了List。
......
List<Locations> locList = new ArrayList<Locations>();
locList.add(new Locations()); // Add a Blank RecordFirst. You can modify it as you want.
locList.addAll(baseInformationService.getAllLocationsList()); // Add other list records
model.addAttribute("locList", locList); // put it to the model
......
希望可以帮助你。
答案 1 :(得分:1)
试试这个
success: function(data){
options = "0:--Please Select--";
for ( var j = 0; j < data.list.length; j++) {//Your List where those values is stored
var records = data.list[j];
options += ";"+records.ID+":"+ records.name ;// ID is primary key of that column & name is your degrees list
}
}
同样see this希望有所帮助