动态 GridView 下拉列表
我有一个包含以下字段的网格视图:
讲座 ID、讲师姓名、主题,网格视图包含用于插入、编辑和删除的链接按钮。我的内容 需要的是,当我单击时,编辑主题列应包含下拉列表以选择主题。 如果 GridView 行未处于 EDIT 模式或 INSERT 模式,则不应显示 DROPDOWN,而仅显示讲师教授的主题。
I have a gridview with following fields
LECTURE ID,LECTURER NAME,SUBJECTS and gridview contains link Buttons to Insert,Edit and DELETE.what i
need is, when i click, EDIT SUBJECTS columns should contain DROPDOWN Lists to select subjects.
if the GridView row is not in the EDIT mode or INSERT mode DROPDOWN should not be displayed and display only the subject taught by the lecturer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过将 SUBJECT 列设置为 TemplateField 来完成,如下所示:
您可能已经添加了 ButtonField 列来调用 EDIT、INSERT 和 DELETE 功能。
This can be accomplished by making the SUBJECT column a TemplateField, as shown below:
You might have already added ButtonField columns to invoke EDIT, INSERT and DELETE functionality.
进行这种数据绑定的技巧是使用两个数据源,一个包含讲座 ID、讲师姓名和主题 ID,另一个数据源仅包含主题列表。您可以使用任何 DataSource 控件来执行此操作 - 这是使用 SqlDataSource 的演示:
The trick with doing this kind of databinding is to use two data sources, one that carries the lecture id, lecturer name and subject id, and one that just has the list of subjects. You can do this with any of the DataSource controls - here's a demo using SqlDataSource: