我想让我的 RadGrid 的项目在页面加载时可编辑。我在这里尝试了这两种方法http://www.telerik.com/help/aspnet/grid/grddefaulteditmodeforgriditemsoninitialload.html 但都没有任何效果。
例如第二种方法,如下所示,在 ItemCreated 事件上设置了 Edit 属性,导致 Edit 模式设置为 true(由调试器验证),但它对显示页面时的结果没有影响。
有人知道我做错了什么吗?
protected void RadGrid1_ItemCreated(object sender, Telerik.WebControls.GridItemEventArgs e)
{
if (!Page.IsPostBack && e.Item is GridEditableItem)
{
e.Item.Edit = true;
}
}