Check existing selections in dropdownlist during record edit

38 Views Asked by At

I have some rows in a grid that are editable by a user. When the user clicks the edit button in a grid row, i'm displaying a multi-select dropdownlist ("ddlEditRegionList") with options to choose from. When this dropdownlist is shown i want to keep the already saved selections checked.

I'm trying with the code snippet below but that does get my existing selections.

       //Get currently selected options into array regionArr
        var region = $.trim($tr.find(".tdRegion").html());
        $("#hidRegionList").val($.trim($tr.find(".tdRegion").html()));
        var regionArr = region.split(',');
        $tr.find(".tdRegion").html($("#divRegionList"));

        //keep selected options checked in edit mode - this isn't working
        $('#ddlEditRegionList option').map(function () {
            for (var i = 0; i < regionArr.length; i++) {
                if ($.trim($(this).text()) == $.trim(regionArr[i])) {
                    return this;
                }
            }
        }).attr('selected', 'selected'); 

Note that i'm using jquery-3.2.1

1

There are 1 best solutions below

1
On
Try .val() instead of .text(), Like:

if ($.trim($(this).val()) == $.trim(regionArr[i])) {
   return this;
}