EXT 2.0 学习之控件介绍

EXT 是一种基于Ajax UI 的框架,主是用作UI,设计出来的窗体非常的漂亮,在这里就不多说什么,看看基本的控件吧:

Demo1:Panel控件

Ext.onReady(function(){
    var obj = new Ext.Panel({
        width: 300,
        height: 200,
        items: [{
            title: "P1",
            height: 50
        }, {
            title: "P2",
            height: 50
        }, {
            title: "P3",
            height: 50
        }]
    });
    obj.render("cao");
});
效果如下:
image 
Demo2:MessageBox控件
Code:
Ext.onReady(function(){
   
    Ext.MessageBox.alert("提示", "This is one Demo!");
    var win = new Ext.Window({
        title: "提示",
        width: 100,
        height: 110,
        html: "<input type='text' value='cao' name='myText'>"
    });
    win.show();
});
效果如下:
image 
Demo3:TabPanel控件
code:
Ext.onReady(function(){
	 var tab = new Ext.TabPanel({
                    width: 300,
                    height: 400,
                    items: [new Ext.Panel({
                        title: "面板1",
                        height: 50,
			html:"<input tyep='text' value='明天更美好!'>"
                    }), new Ext.Panel({
                        title: "面板2",
                        height: 50,
			html:"<input type='button' name='MyButton'>"
                    }), new Ext.Panel({
                        title: "面板3",
                        height: 50
                    })]
                });
	tab.render("cao");

 

效果如下:

image

在这里只是简单的介绍了,这个做WEB UI 是相当的不错;目前有的OA项目中就在用这个东西哟

目前我还对这个东西不是很了解,能力有限只能为大家介绍这一点,请等我的下一篇文章出现吧

 

 
posted @ 2008-09-09 21:50  阳光追梦  阅读(761)  评论(2)    收藏  举报
/*快速评论*/ #div_digg { position: fixed; bottom: 10px; right: 15px; border: 2px solid #ECD7B1; padding: 10px; width: 140px; background-color: #fff; border-radius: 5px 5px 5px 5px !important; box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5); } /** 不知道为什么页面加载完成时还读不到div_digg。可能也是动态生成的。 所以这里只能用定时器 不断的读取,当读取到了再给它动态添加快捷按钮 **/ //自定义 定时器[当元素加载完成是执行回调函数] function customTimer(inpId,fn) { if ($(inpId).length) { fn(); } else { var intervalId = setInterval(function () { if ($(inpId).length) { //如果存在了 clearInterval(intervalId); // 则关闭定时器 customTimer(inpId,fn); //执行自身 } }, 100); } } //页面加载完成是执行 $(function () { customTimer("#div_digg", function () { var div_html = "
\ 关注\  | \ 顶部\  | \ 评论\
"; $("#div_digg").append(div_html); //tbCommentBody }); });