我想在 Sharepoint 2010 中使用 C# 和 ASP.NET 在由 SPList 绑定的 SPGridView 中创建具有 SPList 的同一个复选框。这些复选框选择拆分项并显示功能区。
所以,我在我的 aspx 中写了类似的东西:
<Sharepoint:SPGridView id="mySpGridVew" runat="server" AutogenerateColumns="false" OnRowCreated="GridViewRowEventHandler">
<Columns>
<asp:BoundField/>
<asp:BoundField/>
</Columns>
</Sharepoint:SPGridView>
我在 sharepoint 中手动创建了我的自定义列表,所以每个项目都有标题、编辑按钮和隐藏的复选框来选择所有或每个项目。我已将 SPGridView 与 SPList 绑定,并创建了其他字段,例如:
void MyGridView_RowCreated(Object sender, GridViewRowEventArgs e)
{
SPList myList = SPContext.Current.web.Lists["MyList"];
e.row.cells[1] = myList.Items.["title"];
}
我在论坛和 Internet 中进行了搜索,但找不到在我的 SPGridView 中创建一个单元格的方法,并在我的 SPList 中使用相同的复选框来显示功能区并选择项目。我怎样才能做到这一点?
谢谢你。