将值设置为jqgrid中的选项按钮

时间:2014-06-26 12:58:32

标签: jquery jqgrid

我创建了选项按钮,如下面的方法,

{ name: 'Status', index: 'Status', width: 150, align: 'left', editable: true, edittype: 'select', formatter: 'select', editoptions: { value: 'choose:--Choose---'} },

只能添加一个像choose一样的值。如何在选项按钮中添加多个选项?

1 个答案:

答案 0 :(得分:1)

而不是

 editoptions: { value: 'choose:--Choose---'} 

使用它来添加更多选项:我添加了一个,两个

editoptions: { value: 'choose:--Choose---;1:one;2:two'} 

其中1 =值,one =选项标签

有关编辑选项的详细信息,请点击 here