hello
I do not see grid in dropdownlist

var Itemlist = GetInvoiceItems();
var itemSource =
{
datatype: "json",
datafields: [
{ name: 'Name', type: 'string' },
{ name: 'InvoiceItemID', type: 'string' }
],
id: 'InvoiceItemID',
localdata:Itemlist,
async: false
};
var itemAdapter = new $.jqx.dataAdapter(itemSource, {
autoBind: true
});
$("#InvoiceItemGrid").jqxGrid(
{
width: '100%',
source: itemAdapter,
pageable: true,
selectionmode: 'singlecell',
editable: true,
enablehover: true,
rowsheight: 40,
sortable: true,
altrows: true,
autoheight: true,
height: '420px',
pagesize: 10,
theme: "Web",
editable: false,
columns: [
{
text: 'Item Name', datafield: 'Name', width: 150, columntype: 'dropdownlist',
createeditor: function (row, column, editor) {
editor.jqxDropDownList({ autoDropDownHeight: true, source: itemAdapter });
}
},
],
});