- 浏览: 90502 次
- 性别:
- 来自: 上海
最新评论
-
gavin峰:
挺有参考价值
SpringFlex框架搭建 -
yt582938237:
报org.springframework.web.util.N ...
Spring mvc extjs4文件上传 -
一夜孤城飘雪:
...
ExtJs xtype一览
文章列表
ExtJs xtype一览
- 博客分类:
- extjs4
基本组件:
xtype
Class
描述
button
Ext.Button
按钮
splitbutton
Ext.SplitButton
带下拉菜单的按钮
cycle
Ext.CycleButton
带下拉选项菜单的按钮
buttongroup
Ext.ButtonGroup
编组按钮(Since 3.0)
slider
Ext.Slider
滑动条
progress ...
datefield日期控件设置默认值,为当天的前一月,和后一月
Ext.Date.MONTH 月
Ext.Date.YEAR 年
Ext.Date.DAY 天
注意全部是大写
'日期',
{
xtype:'datefield',
itemId:'beginDate',
format:'Y-m-d',
v ...
org.apache.jasper.JasperException: page.jsp(1,1) Attribute value request.getParameter("item") is quoted with " which must be escaped when used within the value
有网友认为 Tomcat 没有遵循 JSP 2.0 specification (JSP .1.6 Quoting and Escape Conventions, Quoting in Attributes, Page 72-73),让下面不合 ...
RBAC(Role-Based Access
Control,基于角色的访问控制),就是用户通过角色与权限进行关联。简单地说,一个用户拥有若干角色,每一个角色拥有若干权限。这样,就构造成“用
户-角色-权限”的授权模型。在这种模型中,用户与 ...
首先遇到的问题就是HibernateDaoSupport引起的,程序中所有的DAO都继承自HibernateDaoSupport,而HibernateDaoSupport需要注入sessionfactory或者hibernateTemplate,所以出现"sessionFactory " or "hibernateTemplate " is required异常,但是在spring ...
SpringFlex框架搭建
- 博客分类:
- flex
一、Spring环境的搭建
1.1 简单介绍
Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架。BlazeDS 是一个基于服务器的 Java 远程控制 (remoting) 和 Web 消息传递 (messaging)技术,以LGPL(Lesser GNU Public License)公 ...
spring 整合Blazeds时报错:
java.lang.NoClassDefFoundError: flex/messaging/AbstractFlexSessionProvider
提示是缺少类文件
Blazeds中自带的
flex-messaging-core.jar
flex-messaging-common.jar
下载附件中的两个文件,替换掉项目里就可以了
抛出org.springframework.orm.hibernate3.HibernateSystemException: Null value was assigned to a property of primitive type setter of
解决方法:把实体类中的原始类型全部转化为包装类型。
当我创建了一个新的 flex program 后运行时 Cannot run program "C:\Users\Administrator\AppData\Roaming\360se....": CreateProcess error=2, ϵͳÕҲ»µ½ ,原本当运行后会在 Explore 浏览器中打开的 但是怎么弄都不行,看这样的错误也不像是安装时出的错误,感觉就是哪配置的问题,在网上查了查原来是eclipse内部自带的浏览器 设置的是默认值并不是使用的 电脑系统的浏览器,具体设置步骤如下:
打开 eclipse ——选菜单 栏 window ——Perfere ...
Flex Builder 3.0 Plugin For Eclipse 3.3 j2ee安装方法一、 准备工作1、 安装JDK 6 下载地址:http://java.sun.com/javase/downloads/index.jsp2、 eclipse-jee-europa-winter-win32.zip下载地址:http://www.eclipse.org/downloads/moreinfo/jee.php3、 FB3_WWEJ_Plugin.exe(Flex Builder 3 Eclipse plugin)下载地址:http://www.adobe.com/cfusi ...
每次在eclipse中保存Flex源文件是就弹出报错框“The attribute value type is com.adobe.flexbuilder.project.compiler.internal.ProblemManager and expected is one of java.lang.String, Boolean, Integer”,原来是ProblemManager补丁没打上。
解决办法:
1. 下载补丁包ProblemManager (http://www.jamesward.com/downloads/Proble ...
1,设置当前日期 new Ext.form.DateField({
fieldLabel : '结束时间',
name : 'endTime',
id : 'endTimeId',
enableKeyEvents : true,
width : 110,
format : 'Y-m-d H:i:s', value:new Date()
})2,不设置当前日期new Ext.form.DateField({
field ...
Ed Spencer created a plugin that is capable of creating a print version of an ExtJS grid
. This plugin was originally created for ExtJS 3.x. I ported it to ExtJS 4, in case someone need it.
The plugin can be downloaded on the following link:
https://github.com/loiane/extjs ...
在tomcat6版本中:
1、【官方文档】本人不推荐。
在tomcat\conf下server.xml中找到
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
在其中添加:
<Cont ...