`
Zhoumx
  • 浏览: 73605 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论
文章列表

Exttld for j2ee

有谁在用exttld这个标签库阿,有高手留个联系方式啊!!! exttld这东西我觉得还比较好用,抛弃大部分的Javascript编程,这是非常值得关注的。 因为到目前为止,没有一个好的编辑器来编写,测试javascript,而且如果一个地方javascript没写正确将可能导致整个extjs效果出不来,所以我觉得如果用extjs来做开发的话,我们可以尝试一下exttld这个标签库。
研究了一下ExtJS这个js框架,给人的感觉就是学习曲线比较的陡峭。 看了ExtJS的example,example展示的效果的确很丰富,但打开.html文件里面却是空空如也,所有的页面的效果都是用js写出来的啊,这是不是与实际开发存在一些冲突啊,我在想。 我一个一个的源码研究过去,就是el,contentEl,renderTo,applyTo的使用比较重要,这些能够帮助我们在实际页面设计开发过程中采用以往形式,最后用ExtJS来包装成ExtJS的页面效果。但是ExtJS给我们的demo实在是感觉这东西的文档太少,如果我们不能按照以往正常的方法来开发页面的话,我想ExtJS也仅仅只能作为一个以 ...
http://blog.csdn.net/myloon/archive/2007/11/08/1873652.aspx
分页程序实际很简单,下面我介绍一下自己写的,可能很烂 1.构造传递DTO。代码如下: import java.util.List; public class PaginationDto { private int totalCount; private int currentPage; private int totalPages; private int indexPage = 1; private int prePage; private List nums; private int nextPage; private int lastPage; private List ...
动态创建弹出div answer:形式如: function createDiv(){ var msgObj=document.createElement("div")         msgObj.setAttribute("id","msgDiv");         msgObj.setAttribute("align","center");         msgObj.style.background="white";         msgObj.styl ...
1.action向客户端发送执行指定javascript方法的字符串 answer:形式如:response.getWrite().write("<script>parent.callback()</script>"); return null; 2.action向客户端发送javascript文本 answer:形式如:response.getWrite().write("var checkboxEle = document.createElement('input');checkboxEle.type='checkbox';documen ...
将DIV的能容清空 answer:形式如:document.getElementById('divEle').innerHTML="";(注意:document.getElementById('divEle').innerHtml=""不行)
jspSmartUpload组件 answer:jspSmartUpload是一个非常容易使用的用于多文件和其它表单字段一起上传的组件。下面说明使用: public class MultiUploadAction extends Action { public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)throws Exception { // TODO Auto-generated method ...
javascript获取FCKeditor内容 answer:形式如:var oEditor = FCKeditorAPI.GetInstance('content');var content = oEditor.GetXHTML(true); 页面不需要引入FCKeditor如何脚本.
servlet或者struts模拟Ajax效果 answer:当我们需要刷新客户端的某些效果时,无需使用Ajax也可以完成。当客户端通过servlet或action向服务器请求数据或者提交时, 如果我们希望页面整体不进行刷新时,我们可以在客户端写个javascript方法用于刷新部分,然后服务器通过执行这个方法来刷新。 形式如: 比如客户端有个方法 function refreshDiv(msg){document.getElementById('myDiv').innerHTML=msg},当客户端发送请求到servlet或者 action时,在服务器接收数据并处理后写下如下语句即可: res ...
每次看到老长的竖列jar文件就烦燥,其实可以过滤到: 在Package Exploer中有个下拉箭头,点击Filters,勾选第一个,输入*.jar就可以了。
今天在用eclipse时发现web-inf目录下的classes目录不见了,不得了了,还没碰过这样的问题,赶紧搜索网络,一下就搜到了,现在贴出来,感谢那位仁兄的帖子,在这里收藏了。 在Eclipse中选中你的项目,右键--属性--java构建路径(Java   build   path)--source--add   folder,选择你的src目录。在“Allow   output   folders   for   source   folders”前打钩。展开上面project1/src,双击output   folder,选中Specific   output   folder,并选择“ ...
eclipse报The type java.lang.Object cannot be resolved. It is indirectly referenced from required 错误时是应为没有把.jar包引入项目。解决办法就是: 右键你的项目->属性->Java构建路径->库 1.添加你所使用到的外部jar。选择{Add jars} 2.添加系统库。选择{Add Library},添加系统库/j2ee 抄的,哈哈。感谢那位老兄啊!
复制下面的内容到记事本,随便取个名字,吧.txt改为.bat,双击运行,OK! 下面的内容复制了一位名叫"新生野人"的文章,在此表示感谢!借此收藏。 原文地址:http://bbs.xunlei.com/club/123/4219.html?id=0 @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %systemdriv ...
<!-- Note:  A "Server" is not itself a "Container", so you may not      define subcomponents such as "Valves" at this level.      Documentation at /docs/config/server.html --> <Server port="8005" shutdown="SHUTDOWN">   <!--APR library ...
Global site tag (gtag.js) - Google Analytics