Jqxgrid Dropdownlist

I admit, jqxgrid is complex
How to add Dropdownlist column with three items inside it such as (one,two,three)

solved:
{ text: “combo”, dataField:“cmp”, width: 60, columntype: “dropdownlist”,createeditor: function (row, column, editor) { var list = [‘0’, ‘1’, ‘2’]; editor.jqxDropDownList({ autoDropDownHeight: true, source: list });}},

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.