본문 바로가기
반응형

목록56

Extjs 4 - Grid datecolumn edit timefield 그리드에 시간 컬럼을 표시해주기 위해 datecolumn 을 사용하였지만 timefield 로 수정할경우 이전값이 editer 에 들어가지 않는 현상이 벌어졌다. 그래서 gridcolumn 으로 변경후 timefield 로 수정하면 정상적으로 editer에 이전값이 들어가지만 수정후 Date자체가 컬럼에 찍히는 현상이 발생한다. { "xtype": "gridcolumn", "dataIndex": "endTime", "width" : 100, "text": "DeliveryLimittime", "renderer" : function(value){ if(value instanceof Date) return Ext.util.Format.date(value, Ext.Date.patterns.LongTimeISO.. 2013. 11. 5.
Spring 3.1 - Spring Mobile Maven repositorie org.springframework.maven.milestone Spring Maven Milestone Repository http://maven.springframework.org/milestone dependency org.springframework.mobile spring-mobile-device 1.0.0.M3 2013. 10. 28.
Spring 3.1 MVC - JDBC Maven repositorie mesir-repo http://mesir.googlecode.com/svn/trunk/mavenrepo dependency com.oracle ojdbc14 10.2.0.4.0 2013. 10. 28.
Spring - 우체국 주소검색 API to JSON 우체국 주소검색 API XML 값을 JSON 으로 변경 @RequestMapping(value = "/Address.do", method = RequestMethod.GET) public @ResponseBody Map addrApireturnJson(HttpServletRequest request){ Map returnMap = new HashMap(); String apiurl = new String(); apiurl = "http://biz.epost.go.kr/KpostPortal/openapied?regkey=키&target=post&query="; List address = new ArrayList(); HttpURLConnection conn = null; try{ String searchA.. 2013. 9. 10.
반응형