直接加载错误页面void com.opensymphony.xwork2.ActionSupport.addActionError(String anErrorMessage)
摘要:void com.opensymphony.xwork2.ActionSupport.addActionError(String anErrorMessage)if (this.brokerage == null) {this.addActionError("佣金确认信息为空,无法保存!");return "showConfirmOrder";}
阅读全文
js获得readOnly属性
摘要:js 获取readOnly属性<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/h
阅读全文
地址路径过深时的处理方式
摘要:当路径深度达到3456等级别时,要比对tiles.xml文件中的定义路径。如果没有匹配的路径,需要重新定义个路径。struts.xml<action class="projectinfoqueryAction" name="projectinfoquery"><result name="listProject" type="tiles">/projectmgr/projectinfoquery/listProject</result><result name="s
阅读全文
阿拉伯数字大小写转换java工具
摘要:package org.centric.utils;import java.text.DecimalFormat;public class MoneyUtil {/** 大写数字 */ private static final String[] NUMBERS = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" }; /** 整数部分的单位 *
阅读全文
中文变拼音的java工具
摘要:/** * */ package org.centric.utils;import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; import net.sourceforge.pinyin4j.format.HanyuPinyinToneType; import net.sourceforge.pinyin4j.for
阅读全文
ztree和tabs的结合运用
摘要:action:// 形成市场客户公司的树节点 public String marketjson() throws Exception { try { List<Org> dlist = bdao.list("from Org d where d.flag=3"); StringBuffer str = new StringBuffer(); str.append("["); for (int j = 0; j < dlist.size(); j++) { Long pId = 0L; if (dlist.get(j).getSuperO
阅读全文
重置按钮的js写法
摘要:<button type="button" onclick="ClearTextBox()">重置</button><script>$("#createDateBegin").datepicker();$("#createDateEnd").datepicker();function ShowProjectDetail(id){window.showModalDialog("<s:property value='basePath'/>cont
阅读全文