[推荐]一个封装了Ext JavaScript Framework的ASP.NET服务器控件:Coolite Studio (ASP.NET)

使用过Ext的朋友都体会过该JavaScript库的强大,但该库的学习门槛较高。现在有了一个封装了Ext库的Asp.net 服务器控件,当前有二个版本,分别支持.NET2.0和.NET3.5,本人试用的是.NET3.5 版本,内包含ScriptManager、ScriptContainer、HtmlEditor、Panel,DataPicker、HiddenField、RadioButton、Calendar、FieldSet、CheckBox、TextArea、TextBox、NumberTextBox、Window共十四个子控件。
感兴趣的朋友可到下面的地址下载:

Coolite Studio (ASP.NET) Download 
演示效果:

如何换肤?
方法有很多:
方法一:在Aspx文件的Head标签内加入
<head runat="server" lang="zh-cn">
    <title>无标题页</title>
    <cool:ScriptContainer ID="ScriptContainer1" runat="server">
    </cool:ScriptContainer>
    <link href="对应皮肤CSS文件的相应路径" rel="stylesheet" type="text/css" />
</head>
方法二:在后置代码中设置:
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        Coolite.Web.UI.ScriptManager.RegisterSessionTheme(Coolite.Web.UI.Theme.Gray);
    }
</script>
或者
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        HttpContext.Current.Session["Coolite.Theme"] = Coolite.Web.UI.Theme.Gray;
    }
</script>
方法三:使用配置文件:
 1 <? xml version="1.0" ?>
 2  
 3 < configuration >
 4      < configSections >
 5        < section  name ="coolite"  type ="Coolite.Web.UI.GlobalConfig" />
 6      </ configSections >
 7    <!--  COOLITE GLOBAL CONFIGURATION ATTRIBUTES  -->
 8    <!--  cleanResourceUrl = true|false 
 9        The Coolite controls can clean up the autogenerate WebResource Url so they look presentable. 
10        Default is true  -->
11    <!--  gzip = true|false 
12        Whether to automatically render scripts with gzip compression. 
13        Default is true.  -->
14    <!--  scriptAdapter = Ext, jQuery, Prototype, YUI 
15        Which script adapter to use. 
16        Default is "Ext"  -->
17    <!--  renderScripts = true|false 
18        Whether to have the coolite controls output the required JavaScript includes or not.
19        Gives developer option of manually including required <script> files. 
20        Default is true  -->
21    <!--  renderStyles = true|false 
22        Whether to have the coolite controls output the required StyleSheet includes or not.
23        Gives developer option of manually including required <link>/<style> files.
24        Default is true  -->
25    <!--  scriptMode = Release, Debug 
26        Whether to include the Release (condensed) or Debug (with documentation) JavaScript files
27        Default is "release"  -->
28    <!--  theme = Default, Gray 
29        Which embedded theme to use.
30        Default is "Default"  -->
31    < coolite
32      cleanResourceUrl ="true"
33     gzip ="true"
34     scriptAdapter ="Ext"  
35     renderScripts ="true"
36     renderStyles ="true"
37     scriptMode ="Release"
38     theme ="Gray"
39      />
40 </ configuration >
本人测试时用的第一种方法,换肤后效果如下:

注:该控件默认只包括二种风格的主题,更多的主题可到ExtJS官方网站下载: http://extjs.com/learn/Ext_Extensions#User_Themes
使用时只需把包内的内容复制到对应目录下即可。

默认语言是英文,如何设置为中文?
需到Ext官方网站下载Ext2.0,文件夹里有个ext-lang-zh_CN.js文件,这是中文语言包,添加到网站相应目录下,然后用ScriptManager控件导入js文件即可:
<asp:ScriptManager ID="ScriptManager2" runat="server">
        <Scripts>
           <asp:ScriptReference Path="对应目录/ext-lang-zh_CN.js" />
      </Scripts>
 </asp:ScriptManager>

转载于:https://www.cnblogs.com/gyche/archive/2008/02/23/1078569.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值