同一列中不同类型的单元格
我需要在同一列中呈现具有不同类型单元格的数据网格。例如,我有一个数据网格,其中包含“名称”列和“值”列。根据记录的“类型”,“值”列中会有不同的单元格,例如组合框或简单的文本字段。我真的不知道如何以编程方式执行此操作...我不知道数据网格是否是最佳选择。有什么提示吗?
我正在使用 asp.net/vb.net 和框架 3.5
I need to render a datagrid with different kinds of cells in the same column. For example, I have a datagrid with a column "name" and a column "value". Depending on the "type" of my record, I would have different cells in the column "value" like a combobox or a simple textfield. and I don't really see how to do that programmatically... I don't know if the datagrid is the best choice. Any hint?
I'm using asp.net/vb.net with framework 3.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用用户控件来完成此操作,将“类型”传递给用户控件,然后用户控件将处理要显示或生成的控件类型。
You can do that using the user control, where you pass the "type" to the user control and the user control will handle the type of control to show or generate.