设置动态数据生成的数据网格的宽度(实体框架,在.net中)

发布于 2024-07-14 06:34:32 字数 119 浏览 3 评论 0原文

我正在使用动态数据从表生成可编辑数据网格,但是,我无法设置表/网格的宽度。

有人可以给我指出一篇文章/或建议我如何做到这一点吗?

提前致谢。

问候。 库鲁。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烧了回忆取暖 2024-07-21 06:34:32

样式应用到 DynamicData 使用 CSS 生成的页面。 默认情况下,List.aspx 页面模板上的 GridView 具有 CssClass="gridview"。 该类在默认 Site.css 文件中定义了相当多的样式。 包括这个:

table.gridview { width: 100%; }

您可以更改那里的宽度值,以便在使用此类的任何地方进行全局更改(可能不是您正在寻找的)。 如果您只想更改一个实体/页面的宽度,您可能应该为该实体创建一个自定义页面。

步骤

  1. 在 ~/DynamicData/CustomPages 目录中创建一个与实体的 EntitySet/Collection 名称相同的新文件夹(例如:Employee 实体的 ~/DynamicData/CustomPages/Employees)
  2. 从 ~/ 复制 List.aspx 页面DynamicData/PageTemplates 目录复制到您刚刚创建的新目录中。 (您可能需要调整 CodeBehind/aspx 文件的命名空间)
  3. 使用自定义 CSS 类(或在 .aspx 文件中显式)更改页面上 GidView 的宽度。

更多信息: 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:

table.gridview { width: 100%; }

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

  1. Create a new Folder within the ~/DynamicData/CustomPages directory with the same name as the EntitySet/Collection of your entity (ex: ~/DynamicData/CustomPages/Employees for the Employee entity)
  2. Copy the List.aspx page from the ~/DynamicData/PageTemplates directory into the new directory you just created. (you may need to adjust the namespace of the CodeBehind/aspx file)
  3. Using a custom CSS class (or explicitly in the .aspx file) change the width of the GidView on the page.

more info: http://www.asp.net/learn/3.5-SP1/video-445.aspx

ι不睡觉的鱼゛ 2024-07-21 06:34:32

您可以使用动态数据控件名称的语法在 HTML 上添加 CSS,但这必须是用作控件 ID 的确切名称。

例如,如果名称为 grid1 的动态数据网格位于名为 panel1 的面板内部,则 id 将为:“panel1_grid1”。 CSS 将是:

TABLE#panel1_grid1
{
   width: 600px;
}

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:

TABLE#panel1_grid1
{
   width: 600px;
}

A sample workaround in Javascript can be found in this:

http://forums.asp.net/t/1270184.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文