需要在单击编辑时使特定列可编辑
我有一个带有“编辑更新取消”命令字段的网格视图。 当我单击“编辑”时,特定行中的所有列都变为可编辑。 我只需要有 2 个特定的可编辑列。这是如何实现的?
(附屏幕截图)
[在屏幕截图中,所有 3 列都是可编辑的,我只需要第二列和第三列即可可编辑]
提前致谢。
I have a gridview with "Edit Update Cancel" command field.
When I click Edit, all the columns in the particular row becomes editable.
I just need to have 2 specific columns editable. How is that made possible ?
(Screen Shot Attached)
[In the screen shot all 3 columns are editable, I just need the second and third to be editable]
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将其他列设置为只读即可:
Just set the other columsn to read-only:
这很容易。您想要不可编辑的列,然后仅放置标签并正确绑定。
在这里,我在
EditItemTemplate
中使用标签,因为当用户单击编辑按钮时,文本框不会出现。相反,该记录的值将通过标签显示,因此用户无法更新该字段。It is very easy. The column you want not editable then place just label and bind properly.
Here I use label in my
EditItemTemplate
because when the user clicks on edit button, the textbox will not come up. Rather, the value for that record will show through label, and as a result the user can not update that field.