Created
September 5, 2013 11:58
-
-
Save IliaIdakiev/6449181 to your computer and use it in GitHub Desktop.
Check / Uncheck Checkbox multiple times ! PROP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var selectedIds = JSON.parse('@Html.Raw(Json.Encode(@Model.DuplicateIds))'); | |
if (jQuery.inArray(id, selectedIds) != -1) { | |
$("#isDuplicate").prop('checked', true); | |
} else { | |
$("#isDuplicate").prop('checked', false); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment