我正在使用Sitecore 8.1和WFFM进行营销。 我必须在webform的每个字段(textbox,radiobtn,checkbox,dropdown)中添加一个名为“custom_attr”的输入属性,编辑器可以在其中添加一些文本,它将在UI中呈现。
如何添加一个自定义输入属性,当html在Sitecore Webform中为MVC中的营销人员呈现时显示,即
<input type='text' custom_attr='some_msg'/>
<select custom_attr='some_msg'><option></option><select>
<input type='chekbox' custom_attr='some_msg'/>
<input type='radio' custom_attr='some_msg'/>
我们是否有一种全局方式在一个地方添加此属性并为所有字段呈现?