asp.net详细查看如何设置编辑字段宽度
我有一个绑定到 LINQ SQL 查询的详细信息视图。
显示很好,但是当用户切换到编辑模式时,所有要编辑的字段的宽度都会减小,并且没有自动换行!
例如,如何根据数据库列长度或我的固定值设置宽度?
I have a detailsview bound to a LINQ SQL query.
Display is fine, but when user switch to Edit mode, the width of all fields to edit is REDUCED, and there is no wordwrap!
How can I set width according to database column length for instance, or to a fixed value of mine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DV 的 EditRowStyle 和/或 EditDataRowStyle 属性。您可以在 EditItemTemplate 中为各个控件设置样式。
如果设置这些属性时出现任何问题,您可以分享一些屏幕截图或代码。
You can use EditRowStyle and/or EditDataRowStyle properties of DV. You can set styles for individual control in the EditItemTemplate.
You can share some screenshot or code if there is any problem setting those properties.