I'm using jqgrid and I'm populating a select with dataUrl and buildSelect like this:
colModel: [
{ name: 'Id', index: 'id', editable: true, sortable: true, hidden: false, align: 'left' },
{ name: 'Description', index: 'description', editable: true, sortable: true, hidden: false, align: 'left' },
{
name: 'CustomFieldId', index: 'CustomFieldId', editable: true, sortable: true, hidden: false, align: 'left', formatter: 'select',
edittype: "select", editrules: { required: true }, editoptions: {
dataUrl: $("#CustomFieldIdServiceUrl").val(),
buildSelect: function (data) {
var response = jQuery.parseJSON(data);
var html = '<select>';
if (response && response.length) {
for (var i = 0, l = response.length; i < l ; i++) {
var item = response[i];
html += '<option value="' + item.Id + '">' + item.Name+ '</option>';
}
}
return html + "</select>";
}
}
}
It shows all the rows returned from CustomField service when I edit the row, but the value of CustomField in the drop down is not the when of the selected row. How can I select it automatically? I know I can write the "selected" in the output html in the buildSelect but I don't know how to get the selected one from inside that function.
Thanks in advance!! Guillermo.