如何将 jqueryui 主题转换为 Asp.net 主题
只是对此感到困惑和迷失,我为个人项目下载了 jQueryUI Cupertino 主题。我确实知道如何在单页上使用它,但只是对如何将主题转换为与母版页一起使用的 asp.net 主题感到困惑,这就是我所做的一切,但徒劳无功,
从主题库
在项目中创建 App_Theme 目录
在上述目录中创建 Cupertino 主题文件夹目录
复制了下载的Cupertino主题中的所有css和图像目录
设置 将Page.Theme 设置为 Cupertino ,并且没有任何反应 :(
Just got puzzled and lost on this, i downloaded the jQueryUI Cupertino theme for a personal project. I do know how to use it when on single page, but just got stumped on how to convert the theme to a asp.net theme for use with masterpage, This is all i did but in vain,
Downloaded the Theme from the theme base
Created a App_Theme directory in the Project
Created a Cupertino theme folder inside the above directory
Copied all the css and images directory in the Cupertino theme downloaded
Set the Page.Theme to Cupertino , and Nothing happens :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查 web.config ,在页面部分中将默认主题声明为“Cupertino”或不声明。
check in web.config , in pages section you declare default theme as "Cupertino " or not.
MasterPage 中设置的主题已在子页面中被覆盖,导致混乱,删除了在子页面中设置主题的代码现在效果很好。
The Theme being set in MasterPage had been overridden in child page causing the confusion, removed the code that set's the theme in child page now works great.