zoukankan      html  css  js  c++  java
  • 两个封装了Ext JavaScript Framework的ASP.NET服务器控件

    Coolite Studio (ASP.NET)"
    ExtJsExtenderControl


    使用过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>



  • 相关阅读:
    JavaScript做定时器
    当前时间到固定日期的天数,如:在页面弹出显示到到2015年5月1日还有多少天
    使用Date日期对象来完成,在页面上根据不同时间显示不同的问候语,如:早上好,中午好,下午好,晚上好等信息
    JavaScript中遍历数组中元素的两种方法
    设计程序,单击【随机数】按钮,使用Math对象的random函数产生一个0-100之间(含0-100)的随机整数,并在对话框中显示,如下图。单击【计算】按钮,计算该随机数的平方、平方根和自然对数,保留两位小数,并在对话框中显示,如下图。
    JavaScript中实现四舍五入后保留小数的方法
    打印函数如何适应不同的打印机
    在MFC中改变控件的TAB顺序
    LPCTSTR —— 摘自百度百科
    vector使用注意事项
  • 原文地址:https://www.cnblogs.com/CB/p/1203850.html
Copyright © 2011-2022 走看看