`
forestkqq
  • 浏览: 206517 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论
文章列表
如何在显示 jQuery UI Dialog 中,以 ajax 方式调入 dialog 中显示的内容呢?   一种格式是:   $("#myDialog").load( openUrl, postData , function (responseText, textStatus, XMLHttpRequest) { $("#myDialog").dialog('open'); // 打开对话框 } );   另一种 ajax 调用格式则是: $.ajax({ type: "POST" ...
      近期的一个项目需要以Word文件做模板动态生成Doc文件。         原先是使用 VBA 做的,也可以实现,但效果不太满意,一方面是速度比较慢,另一方面是由于客户端环境比较复杂,经常会出现各种错误。         现在的方案基于WordML,结合 xslt ,生成需要的DOC文档。         下面先记录一下模板和XSLT文件的生成步骤:   1. 编辑需要作为模板的Word文档 2. 将Doc文件另存为XML文件,确认没有附加任何 XML 架构 3. 在XML文档中加入需要的标签<tag/>,并使用 XML ToolBox 进行转换 ...
预览文章: jqGrid 问题笔记 永久链接: http://forestkqq.iteye.com/blog/602944     所谓问题可能不是jqgrid本身问题,而是浏览器或应用的特殊需要而产生的问题。   关于jqgrid,最好的参考是它的官网的wiki 和在线的Demo 。 另外 ...
所谓问题可能不是jqgrid本身问题,而是浏览器或应用的特殊需要而产生的问题。   关于jqgrid,最好的参考是它的官网的wiki 和在线的Demo 。 另外这是 http://forestkqq.iteye.com/ 的原创,本文也会有后续的补充,转载的朋友请标明 ...
jQuery UI Datepicker 样例   界面效果:       <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>日期选择</title> <script type="text/javascript" src="../public/jquery-ui-1.7.2.custom/js/jquery- ...
头部加入 :   <link type="text/css" href="jquery-ui-1.7.2.custom/css/south-street/jquery-ui-1.7.2.custom.css" rel="stylesheet" /> <script type="text/javascript" src="jquery-ui-1.7.2.custom/js/jquery-1.3.2.min.js"></script> <s ...
1. MVC    MVC-Struts、Spring、Hibernate框架图   2. Struts+Spring+Hibernate  
ijavaee 的 Eclipse + WTP + Tomcat 配置 http://www.blogjava.net/ijavaee/archive/2009/02/22/256036.html         补遗:   1. 使用 Eclipse 启动Tomcat时使用的配置默认的没有 ROOT 上下文。所以访问   http://localhost:8080/ 这样的地址会报错。可以试试 http://localhost:8080/app1/test.jsp,   app1 是你的应用名。     2. 运行时目录:<workspace&g ...
软件版本:   jbpm-jpdl-suite-3.2.3 Tomcat6.0.18 SqlServer2000   1. 初始化数据库:   在SqlServer中新建数据库,如 jbpm1。   另存修改 jbpm-jpdl-suite-3.2.3\db\jbpm.jpdl.mssql.sql 脚本,可以将其中的 varchar(4000) 替换为 text ,或替换为 varchar(250) 。   然后执行其中的建表部分代码( create table JBPM_ACTION ... )。   执行下面代码添加用户和身份: /* sql server ...
  下载:   打开  http://tomcat.apache.org ,在 左侧 Download 下找到相应版本。 下载: 6.0.20 Binary Distributions 的 Core Zip http://labs.xiaonei.com/apache-mirror/tomcat/tomcat-6/v6.0.20/bin/apache-tomcat-6.0.20.zip 5.5.28 Binary Distributions 的 Administration Web Application Zip http:// ...
  环境变量   JBOSS_HOME=D:\jboss-4.2.3.GA   配置文件   server\default\deploy\jboss-web.deployer\server.xml   <Connector port="8040" .... />    启动服务   bin\run.bat     测试   http://127.0.0.1:8040/     
链接: http://plugins.jquery.com/project/validate   jQuery plugin: Validation  样例1(参考Validation的Demo): $("#FormQuery").validate({ // 定义验证规则 rules: { input1: "required", username: { required: true, minlength: 2 }, password: { required ...
jQuery plugin: Masked Input    http://digitalbush.com/projects/masked-input-plugin/     日期格式样例:   <script language="javascript" src="../public/jquery_lg/jquery.js"></script> <script language="javascript" src="../public/jquery_lg/jquery.mask ...
jQuery Plugin     http://plugins.jquery.com/   jQuery Form Plugin    http://www.malsup.com/jquery/form/     jQuery plugin: Validation   http://bassistance.de/jquery-plugins/jquery-plugin-validation/   jQuery plugin: Masked Input  http://digitalbush.com/projects/masked-in ...
微软的Visio 培训课程   http://office.microsoft.com/zh-cn/training/CR061832752052.aspx     创建一个纯文本形状   http://office.microsoft.com/training/Training.aspx?AssetID=RP012130522052&CTT=6&Origin=RC012130442052#   应用 :绘图中需要独立的文本(即,未附加到形状,或未与形状关联的文本),您可以创建一个所谓的纯文本形状。         调整连 ...
Global site tag (gtag.js) - Google Analytics