SharePoint display templates ERROR: hexadecimal value 0x3C, is an invalid attribute character
its an error about a "<" or ">".
you might have user "Enter" for an element with too many attributes like this
<a href="value......."
class="value......."
id="value......."
data-toggle="value.......">
collapse it to this
<a href="value......." class="value......." id="value......." data-toggle="value.......">
you might have user "Enter" for an element with too many attributes like this
<a href="value......."
class="value......."
id="value......."
data-toggle="value.......">
collapse it to this
<a href="value......." class="value......." id="value......." data-toggle="value.......">
Comments
Post a Comment