- 浏览: 45758 次
- 性别:
- 来自: 北京
最新评论
-
啊哈小小勇:
大哥,你的service怎么弄的?
spring+struts2+hibernate+extjs做的分页 -
liuzhiqiangmeng:
...
tomcat启动时出现java.lang.NoClassDefFoundError: -
pg_caolei:
谢谢了,找了很长时间!万分感谢!
ExtJS在生成Tree时图片不显示问题
文章列表
org.objectweb.asm.ClassVisitor.visit(IILjava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V
出现这个错误是因为你在搭建框架的时候把asm-2.2.3.jar包删掉
- 2009-09-01 11:39
- 浏览 1246
- 评论(0)
如果在/sandh/web-inf/classes下面没有ehcache.xml这个文件,会报这个错误,No configuration found.
Configuring ehcache from ehcache-failsafe.xml found in the classpath:.....这个文件是hibernate缓存配置文
件
<ehcache> <diskStore path="java.io.tmpdir"/> <defaultCache maxElementsInMemory="10000&q ...
- 2009-09-01 11:37
- 浏览 958
- 评论(0)
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd" ><struts> <!-- include节点是struts2中组件化的方式 可以将每个功能模块独立到一个xml配置文件中 然后用include节点引用 --> <include file="struts-default. ...
- 2009-08-31 16:15
- 浏览 692
- 评论(0)
oneTreePanel =Ext.extend(Ext.tree.TreePanel,{ menu:null, constructor:function(){ this.menu=new Ext.menu.Menu({ items:[{ text:"添加", handler:this.onInsertNode, scope:this },{ text:"删除& ...
- 2009-08-31 09:39
- 浏览 1179
- 评论(0)
JsonPagingGridPanel =Ext.extend(Ext.grid.GridPanel,{ constructor:function(){ this["store"]:new Ext.data.Store({ url:"", //reader解析 reader:new Ext.data.JsonReader({ //autoLoad:true, root:"rows",//解析指定xml的节点 //分页需要 ...
- 2009-08-31 09:37
- 浏览 1647
- 评论(0)
PagingGridPanel =Ext.extend(Ext.grid.GridPanel,{ constructor:function(){ this["store"]:new Ext.data.Store({ url:"", //reader解析 reader:new Ext.data.XmlReader({ autoLoad:true, record:"row",//解析指定xml的节点 //分页需要的属性(数量 ...
- 2009-08-31 09:33
- 浏览 1319
- 评论(0)
// JavaScript Document//EditorGridPanel实现单元格选中MoneyGrildPanel=Ext.extend(Ext.grid.EditorGridPanel,{ typeCnb:null, inserted:[], //定义conn对象 conn:new Ext.data.Connection(), constructor:function(){ this.typeCnb= new Ext.form.ComboBox({ triggerAction:' ...
- 2009-08-31 09:30
- 浏览 2401
- 评论(0)
// JavaScript Document// JavaScript Document//PersonViewGridPanel.SIORE_URL="http://localhost/IISHelp/ExtJSTest/server/app/test/11/xmlstore.asp"/****************************************************************************************************/
PersonListFormPanel=Ext.extend(Ext.form.For ...
- 2009-08-31 09:28
- 浏览 1283
- 评论(0)
Ext.onReady(function (){ var _grid=new Ext.grid.GridPanel({ id:"view_grid", renderTo:Ext.getBody(), height:200, width:350, //enableColumnMove:false,列不可拖动 //colModel等同于columns colModel:new Ext.grid.ColumnModel([ {header: "姓名", width: 100, ...
- 2009-08-31 09:26
- 浏览 941
- 评论(0)
Ext.onReady(function (){
var _grid=new Ext.grid.GridPanel({
renderTo:Ext.getBody(),
height:200,
width:350,
//colModel等同于columns
colModel:new Ext.grid.ColumnModel([
{header: "姓名", width: 100, sortable: true, dataIndex: 'change'},
...
- 2009-08-31 09:23
- 浏览 772
- 评论(0)
json的:
Ext.onReady(function (){
var _store=new Ext.data.JsonStore({
//data:[{sex:"男"},{sex:"女"}],//存放到数组里
//fields:['sex']//解析
proxy:new Ext.data.HttpProxy({url:"http://localhost/IISHelp/ExtJSTest/server/app/test/11/xmlstore.asp"})
alert(_stor ...
- 2009-08-31 09:22
- 浏览 1052
- 评论(0)
html代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>wayfoon</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" c ...
- 2009-08-24 14:22
- 浏览 1425
- 评论(0)
-Java代码
package com.test;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@SuppressWarnings("serial")
public c ...
- 2009-08-24 14:18
- 浏览 893
- 评论(0)