Instead of first clicking the cell or row. Just like the checkbox is: it is immediately usable for the user.
$('#myDataGrid').jqxGrid({
source: myAdapter,
autoheight: true,
editable: true,
sortable: true,
columnsresize: true,
width: 1200,
rowdetails: true,
initrowdetails: initRowDetails,
rowdetailstemplate: {
rowdetailsheight: 195
},
columns: [
{ text: 'Status', dataField: 'statusCode', displayfield: 'status',
columntype: 'dropdownlist', editable: true, width: 100,
createeditor: function (row, value, editor) {
editor.jqxDropDownList({
source: myStatusAdapter,
displayMember: 'label',
valueMember: 'value'
});
}
}
],
localization: locale
})
Thanks!
Richard