我的网络应用程序正在使用一个设置有jquery-ui和jqgrid的大图标。
为了容易地保持对CSS的更改以适应更大的图标,当升级jquery-ui或jqgrid我有一个单独的CSS文件,我有一堆覆盖。
为了容易地保持对CSS的更改以适应更大的图标,当升级jquery-ui或jqgrid我有一个单独的CSS文件,我有一堆覆盖。
你可以想象这个覆盖文件必须包含在jquery-ui样式表和jqgrid样式表之后。
我把所有的样式表都整理成一个捆绑包
bundles.Add(new StyleBundle("~/Content/dark-hive/allstyles").Include( "~/Content/dark-hive/jquery-ui-1.8.23.custom.css","~/Content/ui.jqgrid.css","~/Content/jquery-ui-fixes.css","~/Content/icons.css","~/Content/site.css"));
但它被渲染如此!
<link href="/Content/dark-hive/jquery-ui-1.8.23.custom.css" rel="stylesheet"/> <link href="/Content/jquery-ui-fixes.css" rel="stylesheet"/> <link href="/Content/ui.jqgrid.css" rel="stylesheet"/> <link href="/Content/icons.css" rel="stylesheet"/> <link href="/Content/site.css" rel="stylesheet"/>
如何配置我的包以正确的顺序呈现?
更新
好的,这是愚蠢的,但它的工作。
无论我做了什么,文件总是呈现不正确的。所以我尝试了一些愚蠢的,最后添加了jquery-ui-fixes.css和jquery-ui-1.8.23.custom.css。
突然我的命令是
<link href="/Content/jquery-ui-fixes.css" rel="stylesheet"/> <link href="/Content/dark-hive/jquery-ui-1.8.23.custom.css" rel="stylesheet"/> <link href="/Content/ui.jqgrid.css" rel="stylesheet"/> <link href="/Content/icons.css" rel="stylesheet"/> <link href="/Content/site.css" rel="stylesheet"/>
我将我的javascript文件重命名为jqueryuifixes.css,现在它的顺序保存在较低的js文件中。
我在想,如果一个样式表有一个名称,它首先被优先排列某些原因,它的顺序与其他文件一起维护。
如果有人可以解释这个,我会给他们支票。
解决方法
如果您单独包含每个文件,则捆绑包将会尊重您的订单…
var bundle = new Bundle("~/Content/dark-hive/allstyles",new StyleBundle()); bundle.Include("~/Content/dark-hive/jquery-ui-1.8.23.custom.css"); bundle.Include("~/Content/ui.jqgrid.css"); bundle.Include("~/Content/jquery-ui-fixes.css"); bundle.Include("~/Content/icons.css"); bundle.Include("~/Content/site.css"); bundles.Add(bundle);
UPDATE
即使使用明确的顺序,您会发现有一个非常方便的内置订购系统,首先在所有其他订单系统上订购特定的命名文件。要完全清除这一点,您可以使用:
bundles.FileSetorderList.Clear();
您可以使用以下方式添加自己的定制订单:
BundleFileSetordering ordering = new BundleFileSetordering("My Order"); ordering.Files.Add("jquery.js"); bundles.FileSetorderList.Clear(); bundles.FileSetorderList.Add(ordering);
本质上,有一个庞大的内置文件列表,在任何不在列表中的任何文件之前,它们将被放入一个特定的顺序 – 但这些选项可以让你控制。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。