在我的共享点网站集中有一个列表,那么如何将一个字段的文本框转换为范围控件或其他控件。?
我只能看到以下代码,
<SharePoint:FormField runat="server" id="ff23{$Pos}" ControlMode="New" FieldName="Certifications" __designer:bind="{ddwrt:DataBind('i',concat('ff23',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Certifications')}"/>
<SharePoint:FieldDescription runat="server" id="ff23description{$Pos}" FieldName="Certifications" ControlMode="New"/>
但它只显示文本框,我不知道文本框在该区域中的显示方式,以及我想要做什么,以获得其他一些控件,如输入类型=&#34;范围&#34;
答案 0 :(得分:0)
一种简单的方法是使用javascript。
document.getElementById("id_of_field").type="range";
如果您还没有将jQuery添加到页面中,则可能需要将jQuery添加到页面中:
$("input[title='Certifications']").type = "range";