摘要: 这里的标签都是常用不好理解的: formatfunc="showFormatNumer" 显示数字在页面上 ockedcolumnnum="6" 几列是不动的 sortable="true" 是否支持排序 readonly="true" 只读页面不能更改 showpagerbar 是否显示分... 阅读全文
posted @ 2017-12-25 14:39 酷酷的飞 阅读(89) 评论(0) 推荐(0) 编辑
摘要: ArryList 移除数组指定元素 arr.remove(i) i-- for(int i=0;i<arr.size();i++){ if(arr.get(i).doubleValue()==3){ arr.remove(i); i--; } } 判断字符串是否为空时 if(xxxx!=null&&!"".equals(xxxx)){} ... 阅读全文
posted @ 2017-12-25 14:14 酷酷的飞 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 级联查询在UEP中采用动态下拉的形式,cascadeid为关键字,注意jsp页面的id的相互嵌套关系,数据库字段的数值的设置,和动态下拉SQL语句的书写。本功能实现了省市区的三级联动查询 阅读全文
posted @ 2017-12-25 14:02 酷酷的飞 阅读(194) 评论(0) 推荐(0) 编辑
摘要: $.showModalDialog( url, title, callback, callbackparam, width, height, choosebutton, showx, showy) (此方法为常用方法) url:弹出窗口的url title:标题 callback:回调方法 call 阅读全文
posted @ 2017-12-25 13:40 酷酷的飞 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 实体类: @Entity @Table(name = "xxxxx") public class WzInitializeStoreInfo extends EntityBean{ private static final long serialVersionUID = 1L; //字段都需要get、set方法 @Id @C... 阅读全文
posted @ 2017-12-25 11:59 酷酷的飞 阅读(274) 评论(0) 推荐(0) 编辑
摘要: uep建立下拉 静态下拉: ①private Map beanMap = new HashMap(); //getter、setter 在初始化方法中 beanMap.put("Y", "是"); beanMap.put("N", "否"); 这种方式主要应用于相同界面,不同人不同状态 ... 阅读全文
posted @ 2017-12-25 11:00 酷酷的飞 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 时间戳转化为Date(or String) SimpleDateFormat format = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ); Long time=new Long(445555555); String d = format.format 阅读全文
posted @ 2017-12-25 10:09 酷酷的飞 阅读(223) 评论(0) 推荐(0) 编辑