我正在使用gridview并从SharePoint列表中将数据绑定到它。
我想知道如何在gridview中使用搜索功能,因为我没有任何数据库。 (我看到的解决方案都使用数据库)
除了JQuery插件DataTables之外还有其他解决方案吗?
请帮忙!谢谢:))
答案 0 :(得分:0)
我建议搜索sharepoint列表,而不是gridview。
{{1}}
答案 1 :(得分:0)
我建议您在专门使用SharePoint时使用SPGridView而不是普通的Asp.net Gridview,在SPGridView中,您可以访问与Search不完全相同的Filter属性,但除了“JQuery插件DataTables”之外好多了
spGV.FilterDataFields = "Year,Title,,Name";
spGV.FilteredDataSourcePropertyName = "FilterExpression";
您可以在此处找到完整的示例:https://code.msdn.microsoft.com/office/SPGRIDVIEW-EXAMPLE-47276dd4