人员选择器AllowEmpty 属性
我在我的 aspx 页面中使用 SharePoint 的人员选择器用户控件。我已将人员选择器控件的AllowEmpty 属性设置为false。
但是,控件所需的字段验证仍然没有发生。我不想明确使用必需的字段验证控件来验证这一点。有什么见解吗?
问候, 拉古拉曼V
I am using the people picker user control of SharePoint in my aspx page. I have set the AllowEmpty property of people picker control as false.
But, still the required field validation is not occurring for the control. I don't want to use a required field validation control explicitly for validating this. Any insights?
Regards,
Raghuraman.V
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了启用/禁用 验证 <基于 href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.entityeditor.aspx" rel="nofollow">实体编辑器 的控件(例如 人员编辑器)应组合指定以下属性:
空值的情况下,还应提供
ValidatorEnabled="true"
,如下所示:In order to enable/disable validation for Entity Editor based controls (like People Editor) the following properties should be specified in combination:
So, in your case to disable empty values,
ValidatorEnabled="true"
should be provided also like shown below: