본문 바로가기
반응형

프로그래밍48

Spring, JAVA - iText 페이지 사이즈 new RectangleReadOnly() 로지정 하는 페이지 사이즈가 픽셀인줄 알고 삽질했는데 결국 페이지 단위는 포인트였다.... 친절히 변환 시켜주시는곳 http://www.translatorscafe.com/cafe/EN/units-converter/typography/3-13/ 2013. 12. 9.
Extjs 4.1 - Label setText Html and reflash style setText Html : setText(text , false); refalsh style : updateLayout(); Ext.getCmp("Labelid").setText(''+obj.lastUpdateTime+'', false); Ext.getCmp("Labelid").updateLayout(); 2013. 11. 12.
Spring 3.2.5 릴리즈 Change Log >Changes in version 3.2.5 (2013-11-06) ------------------------------------- * fixed type prediction for generic factory method with conversion of method arguments (SPR-10411) * fixed GenericTypeResolver issues relating to ParameterizedType (SPR-10819) * allow indexed constructors to be used with @Autowire resolution (SPR-11019) * refined JavaConfig overrides algorithm (SPR-10988, SPR-10992) * f.. 2013. 11. 8.
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.
반응형