欢迎来到天天文库
浏览记录
ID:42366794
大小:2.21 MB
页数:27页
时间:2019-09-13
《easyExt第一季学习笔记》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、EasyExt(使用与开发web的华丽前端)开发环境搭建1.插件安装:spket安装通过link文件与eclipse相关联,配置spket用于在开发ext时代码提示1.Window/preferences/spket/javaScriptprofiles/创建Extjs/addlibrary/extjs2.AddFile、关联extjs包中的build/sdk.jsb32.工程创建:引入相关文件:examples/resources/Bootstrap.js:针对是否引入ext-all-dev.js还是ext-all.jsExt-a
2、ll-dev.js:开发模式ext-all.js:ext核心jar包Ext-all-debug.js:开发模式需要的Ext核心代码包Ext-lang-zh_CN.js:国际化开发包一个简单的例子创建web工程、jsp中引入相关的Ext开发文件:3、set="utf-8"src="/js/extjs/ext-all-debug.js">//Ext.onReady(fun4、ction(){//Ext.MessageBox.alert("代码提示","helloworld,你好,世界!");//});特别说明:引入css通过引入js代码文件通过Ext.onReady(function(){});为Ext准备函数,类似于window.onload()在dom对象执行后立即执行,在jquery中以$(document).ready(function(){});Ext.MessageBox=Ext.Msg这个类提供Extjs弹出框的5、小组件所有类继承Ext.BaseExt.Msg.alert()并不是alert()而是一个Div,同时alert两个信息将会只显示最后一个:Ext.Msg.alert(“hello”);Ext.Msg.alert(“world”);//returnworld;打印信息到前台:console.info(...);Ext.MessageBox:几种弹出框的研究弹出框1.alert(Stringtitle,Stringmsg,[Functionfn],[Objectscope])://1alert用法://title//message//6、callback//scope//Ext.Msg.alert("提示信息","这是一个提示框!",function(){//console.info(this);//alert("这是一个回调函数");//},this);确认框2.confirm(Stringtitle,Stringmsg,[Functionfn],[Objectscope])//2confirm用法://Ext.Msg.confirm("信息确认","这是一个消息确认框!",function(data){//alert(data);//datayes:确认no:取7、消//},this);输入框3.prompt(Stringtitle,Stringmsg,[Functionfn],[Objectscope],[Boolean/Numbermultiline],[Stringvalue])//3prompt用法://Ext.Msg.prompt("信息录入","姓名:",function(data,obj){//Ext.Msg.alert("提示",data+","+obj);//console.info(this);//},this,true,"张飒");等待框4.wait(Stringmsg,8、[Stringtitle],[Objectconfig])//4wait//Ext.Msg.wait("数据更新","等待",{//这是json格式---progressbar.wait对象//interval:500,//每隔500
3、set="utf-8"src="/js/extjs/ext-all-debug.js">//Ext.onReady(fun
4、ction(){//Ext.MessageBox.alert("代码提示","helloworld,你好,世界!");//});特别说明:引入css通过引入js代码文件通过Ext.onReady(function(){});为Ext准备函数,类似于window.onload()在dom对象执行后立即执行,在jquery中以$(document).ready(function(){});Ext.MessageBox=Ext.Msg这个类提供Extjs弹出框的
5、小组件所有类继承Ext.BaseExt.Msg.alert()并不是alert()而是一个Div,同时alert两个信息将会只显示最后一个:Ext.Msg.alert(“hello”);Ext.Msg.alert(“world”);//returnworld;打印信息到前台:console.info(...);Ext.MessageBox:几种弹出框的研究弹出框1.alert(Stringtitle,Stringmsg,[Functionfn],[Objectscope])://1alert用法://title//message//
6、callback//scope//Ext.Msg.alert("提示信息","这是一个提示框!",function(){//console.info(this);//alert("这是一个回调函数");//},this);确认框2.confirm(Stringtitle,Stringmsg,[Functionfn],[Objectscope])//2confirm用法://Ext.Msg.confirm("信息确认","这是一个消息确认框!",function(data){//alert(data);//datayes:确认no:取
7、消//},this);输入框3.prompt(Stringtitle,Stringmsg,[Functionfn],[Objectscope],[Boolean/Numbermultiline],[Stringvalue])//3prompt用法://Ext.Msg.prompt("信息录入","姓名:",function(data,obj){//Ext.Msg.alert("提示",data+","+obj);//console.info(this);//},this,true,"张飒");等待框4.wait(Stringmsg,
8、[Stringtitle],[Objectconfig])//4wait//Ext.Msg.wait("数据更新","等待",{//这是json格式---progressbar.wait对象//interval:500,//每隔500
此文档下载收益归作者所有