动态改变GridView模板字段
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“GridView1_RowEditing”事件上执行此操作。
在行编辑中捕获文本框中的值(您正在更改)。
根据值创建要显示的项目列表。
在当前行绑定下拉列表
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