Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.