Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只能编辑(双击)RadGrid 中的最后一行。当我选择任何其他行时,它会引发错误。
从 DataSource 中提取 DataKeyValues 时出现问题。请确保正确指定 DataKeyNames 并且指定的所有字段都存在于 DataSource 中。
有没有人遇到过这个问题?如果我能够编辑一行,为什么不能编辑其他行?
你必须dataKeyNames 在你的MasterTableView. 例如,如果您的表有三列(Column1,Column2,Column3)
dataKeyNames
MasterTableView
Column1,Column2,Column3
<telerik:RadGrid ID="RadGrid1" runat="server"> <MasterTableView DataKeyNames="Column1,Column2,Column3"> </MasterTableView> </telerik:RadGrid>