Skip to content

Instantly share code, notes, and snippets.

@StfBauer
Last active February 9, 2018 20:10
Show Gist options
  • Save StfBauer/88c219d2cad97cd079dd7608384a4957 to your computer and use it in GitHub Desktop.
Save StfBauer/88c219d2cad97cd079dd7608384a4957 to your computer and use it in GitHub Desktop.
Field Level Override
(function () {
var myFormContext = {
Templates: {
Fields: {
LookUp: {
"View": function (ctx) {
debugger
console.log('Hitted');
console.log(ctx);
}
}
}
},
ListTemplateType: 100
};
SPClientTemplates.TemplateManager.RegisterTemplateOverrides(myFormContext);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment