Obout 网格样式和 Javascript 未加载

发布于 2024-11-26 11:18:57 字数 450 浏览 1 评论 0原文

我用样式和脚本设置了我的 obout 网格,一切正常。

现在我想将网格放入一个单独的aspx文件(包括脚本、数据源等)中,并使用jQuery的加载方法将网格页面加载到默认页面中。

        $(document).ready(function () {
            $('#divGrid').load("Grid.aspx #result", function () {
                $('#loader').hide('slow');
            });
        });

脚本标签包含在结果 div 中。

网格页面本身可以工作,但默认页面中加载的网格未正确加载。脚本和样式丢失。

我尝试将文件夹样式设置为“~/styles/black_glass”,但这也不起作用。

知道如何解决这个问题吗?

i set up my obout grid with styles and scripts and everything worked fine.

now i wanted to put the grid into a seperate aspx file (including scripts, datasources, etc) and load the grid page into the default page with jQuerys load method.

        $(document).ready(function () {
            $('#divGrid').load("Grid.aspx #result", function () {
                $('#loader').hide('slow');
            });
        });

the script tag is included in the result div.

the grid page itself works, but the loaded grid in the default page is not loaded correctly. the scripts and styles are missing.

i tried to set up the folderstyle to "~/styles/black_glass" but that doesn't work too.

any idea how to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

毁梦 2024-12-03 11:18:57

好吧,现在我明白问题是什么了。

gridview 为网格页面中的资源生成了一些 WebResource.axd 和 ScriptResource.axd ,这些资源不是通过 jquery 加载调用加载的。如果我删除加载方法中的元素选择器,它就可以工作。在这种情况下这不太好,但这是要处理的另一件事。

ok now i see what the problem is.

that gridview generated some WebResource.axd and ScriptResource.axd includes for the resources in the grid page, which were not loaded via the jquery load call. if i remove the element selector in the load method, it works. this is not nice in this case, but thats a different thing to deal with.

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