如何在 Jqxgrid 中显示页面加载的下拉列表
How to show Dropdownlist on page load in Jqxgrid
我正在使用 jqwidgets 的 Jqxgrid。
我在网格中获取了一个下拉列表。
我想在页面加载时默认以可编辑模式显示下拉列表。
请查看此屏幕截图,其中第一个下拉菜单显示为 'Please Choose',点击网格单元就会出现,如何默认绑定它。
下面是代码。
{
text: 'Position of meter in Rack', datafield: 'MeterPositionInRack', width: 180, columntype: 'dropdownlist', editable: true,
createeditor: function (row, column, editor) {
var list = ['1', '2', '3' ,'4'];
editor.jqxDropDownList({ autoDropDownHeight: true, source: list, selectedIndex: 0 });
editor.jqxDropDownList.bind('select', function (event) {
var args = event.args;
var item = $('#jqxdropdownlist').jqxDropDownList('getItem', args.index);
alert('Selected: ' + item.label);
});
}
, initeditor: function (row, cellvalue, editor) {
var list1 = ['1', '2', '3', '4'];
console.log("initeditor: " + list1);
editor.jqxDropDownList({ autoDropDownHeight: true, source: list1, selectedIndex: 0 });
}
}
请帮帮我。
Jqxgrid 具有 ready
属性,可以在网格初始化和绑定完成后执行任何操作,因此您可以触发 begin update 方法:
$("#jqxgrid").jqxGrid({
...
ready: function () {
$("#jqxgrid").jqxGrid('beginrowedit', 0);
},
...
});
另请参阅:
我正在使用 jqwidgets 的 Jqxgrid。
我在网格中获取了一个下拉列表。
我想在页面加载时默认以可编辑模式显示下拉列表。
请查看此屏幕截图,其中第一个下拉菜单显示为 'Please Choose',点击网格单元就会出现,如何默认绑定它。
下面是代码。
{
text: 'Position of meter in Rack', datafield: 'MeterPositionInRack', width: 180, columntype: 'dropdownlist', editable: true,
createeditor: function (row, column, editor) {
var list = ['1', '2', '3' ,'4'];
editor.jqxDropDownList({ autoDropDownHeight: true, source: list, selectedIndex: 0 });
editor.jqxDropDownList.bind('select', function (event) {
var args = event.args;
var item = $('#jqxdropdownlist').jqxDropDownList('getItem', args.index);
alert('Selected: ' + item.label);
});
}
, initeditor: function (row, cellvalue, editor) {
var list1 = ['1', '2', '3', '4'];
console.log("initeditor: " + list1);
editor.jqxDropDownList({ autoDropDownHeight: true, source: list1, selectedIndex: 0 });
}
}
请帮帮我。
Jqxgrid 具有 ready
属性,可以在网格初始化和绑定完成后执行任何操作,因此您可以触发 begin update 方法:
$("#jqxgrid").jqxGrid({
...
ready: function () {
$("#jqxgrid").jqxGrid('beginrowedit', 0);
},
...
});
另请参阅: