Sharepoint - Get a value included from a lookup column using the JavaScript Client Object Model
Looks like I just needed to add the get_lookupValue()
function after my get_item
call:
alert(oDeptItem.get_item('Department').get_lookupValue());
Hope this helps someone...