需要在单击编辑时使特定列可编辑

发布于 2024-10-13 09:07:03 字数 231 浏览 3 评论 0原文

我有一个带有“编辑更新取消”命令字段的网格视图。 当我单击“编辑”时,特定行中的所有列都变为可编辑。 我只需要有 2 个特定的可编辑列。这是如何实现的?

(附屏幕截图)

alt text

[在屏幕截图中,所有 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)

alt text

[In the screen shot all 3 columns are editable, I just need the second and third to be editable]

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅沫记忆 2024-10-20 09:07:03

只需将其他列设置为只读即可:

 <asp:BoundField DataField="Id" HeaderText="Id" ReadOnly="True"  />

Just set the other columsn to read-only:

 <asp:BoundField DataField="Id" HeaderText="Id" ReadOnly="True"  />
妖妓 2024-10-20 09:07:03

这很容易。您想要不可编辑的列,然后仅放置标签并正确绑定。

<EditItemTemplate>
 <asp:Label Runat="server" Text='<%# Bind("UnitPrice", "{0:c}") %>' ID="Label1"></asp:Label>
</EditItemTemplate>

在这里,我在 EditItemTemplate 中使用标签,因为当用户单击编辑按钮时,文本框不会出现。相反,该记录的值将通过标签显示,因此用户无法更新该字段。

It is very easy. The column you want not editable then place just label and bind properly.

<EditItemTemplate>
 <asp:Label Runat="server" Text='<%# Bind("UnitPrice", "{0:c}") %>' ID="Label1"></asp:Label>
</EditItemTemplate>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文