Reply To: Show contenttype column with vLookup

Forums vLooup for SharePoint Show contenttype column with vLookup Reply To: Show contenttype column with vLookup

#18869
Alexander Bautz
Keymaster

It doesn’t look like the content type name is accessible directly, but you can get it by using a custom function. Set up the vLookup field as the attached image, and add this to the custom js:

function getContentTypeName(val,item){
   return item.get_contentType().get_name();
}

Alexander