摘要:
conn = CM.getConnection();cstam = conn.prepareCall("{? = CALL FN_QUERY_ACCIDENTS_BY_PAGER(?,?,?,?,?,?,?,?,?,?)}");cstam.registerOutParameter(1, OracleTypes.CURSOR);cstam.setLong(2, 0);//对应 P_LISTOREXPORT NUMBER, --查询类型 列表 0,导出 1cstam.setLong(3, agencyId);cstam.setLong(4, unitId);cstam.setS
阅读全文
摘要:
ExtJS 中,下列两个方法有差别formPanel.getForm().getValues()formPanel.getForm().getFieldValues()1.对于下拉控件 ComboBox前者可能拿不到下拉框的value内容,而只是拿到它显示的内容后者则拿到value的内容。2.对于DateField前者同样是拿到显示的内容,后者则是完整的datetime, 如 Tue Jun 18 2013 00:00:00 GMT+0800 (中国标准时间Ext.urlEncode后,显示为这样的内容 2013-06-18T00:00:00其实这些从他们的源代码就能看出来。内容如下:/**
阅读全文