A couple of my rows are Multi Select Rows. When I make this call nothing returns for that row. How do would I handle the multi-value field?
<script type="text/javascript">
$.ajax({
url: "https://gumdropsgc.sharepoint.com/sites/Training/_api/web/lists/getbytitle('Modules')/items(1)",
type: "GET",
headers: {"Accept": "application/json;odata=verbose"},
cache:false,
success: function(data){
console.log(data);
var html = "<table border='0'>";
$(data.d.results[0]).each(function(){
html = html + "<tr><td>" + this.Title + "</td></tr>" +
"<tr><td><h2>" + "Roles :" +
" " + this.Roles + "</h2></td></tr>";
});
html += "</table>";
$("#listResult").html(html)
}
});
</script>
<div id="listResult"></div>

this.Roles? It should be an object or an array (or an array of objects?). Cannot recall, but adding a breakpoint and checking the value should give you the info you need.