动态改变GridView模板字段

发布于 2025-01-06 00:04:00 字数 82 浏览 1 评论 0原文

我有一个 gridview 模板字段,它是一个下拉列表。

在编辑某些行时,我要显示的项目少于其他行。

这怎么能做到呢?

I have a gridview template field that's a dropdownlist.

On Edit for certain rows I was to display less items than other rows.

How can this be done?

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

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

发布评论

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

评论(1

比忠 2025-01-13 00:04:00

在“GridView1_RowEditing”事件上执行此操作。
在行编辑中捕获文本框中的值(您正在更改)。
根据值创建要显示的项目列表。

在当前行绑定下拉列表

gr.EditIndex = e.NewEditIndex;

GridViewRow editingRow = grv.Rows[e.NewEditIndex];

DropDownList ddlPbx = (editingRow.FindControl("ddlPBX") as DropDownList);
if (ddlPbx != null)
{
    ddlPbx.DataSource = _pbxTypes;
    ddlPbx.DataBind();
}

Do this work on 'GridView1_RowEditing' Event.
on row edit capture the values in textbox (which you are changing).
depending on the value create a list of items you want to show.

Bind dropdownlist in current row

gr.EditIndex = e.NewEditIndex;

GridViewRow editingRow = grv.Rows[e.NewEditIndex];

DropDownList ddlPbx = (editingRow.FindControl("ddlPBX") as DropDownList);
if (ddlPbx != null)
{
    ddlPbx.DataSource = _pbxTypes;
    ddlPbx.DataBind();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文