Home › Forums › vLooup for SharePoint › Show contenttype column with vLookup › Reply To: Show contenttype column with vLookup
November 24, 2017 at 00:11
#18869
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