设置动态数据生成的数据网格的宽度(实体框架,在.net中)
我正在使用动态数据从表生成可编辑数据网格,但是,我无法设置表/网格的宽度。
有人可以给我指出一篇文章/或建议我如何做到这一点吗?
提前致谢。
问候。 库鲁。
I am generating editable data grids from tables using dynamic data, however, i am unable to set the width of the tables/grids.
Can someone please point me to an article/ or suggest how i can do this?
Thanks in advance.
Regards.
Kulu.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
样式应用到 DynamicData 使用 CSS 生成的页面。 默认情况下,List.aspx 页面模板上的 GridView 具有 CssClass="gridview"。 该类在默认 Site.css 文件中定义了相当多的样式。 包括这个:
您可以更改那里的宽度值,以便在使用此类的任何地方进行全局更改(可能不是您正在寻找的)。 如果您只想更改一个实体/页面的宽度,您可能应该为该实体创建一个自定义页面。
步骤
更多信息: http://www.asp.net/learn/3.5 -SP1/video-445.aspx
Styles are applied to the pages generated by DynamicData with CSS. By Default the GridView on the List.aspx Page Template has a CssClass="gridview". That class has quite a few styles defined in the default Site.css file. including this one:
You can change the width value there to make a Global change everywhere this class is used (probably not what you are looking for). If you would like to change the width for just one entity/page you should probably make a Custom Page for that entity.
Steps
more info: http://www.asp.net/learn/3.5-SP1/video-445.aspx
您可以使用动态数据控件名称的语法在 HTML 上添加 CSS,但这必须是用作控件 ID 的确切名称。
例如,如果名称为 grid1 的动态数据网格位于名为 panel1 的面板内部,则 id 将为:“panel1_grid1”。 CSS 将是:
Javascript 中的示例解决方法可以在以下位置找到:
http://forums。 asp.net/t/1270184.aspx
You can just add CSS on your HTML using the syntax of the name of the dynamic data control, but this must be the exact name used as ID of the control.
For example, if your dynamic data grid with the name of grid1 is inside of panel named panel1, the id will be: "panel1_grid1". the CSS will be:
A sample workaround in Javascript can be found in this:
http://forums.asp.net/t/1270184.aspx