분류 전체보기(759)
-
Windows 11 새로 만들기에 메모장(notepad)이 없어졌을 때
참조: https://blog.naver.com/techshare/223252043111 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" 항목이 없는 경우 - 두 번째 이야기예전 글과 동일한 상황이지만, 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" ...blog.naver.comWin + rregeditHKEY_CLASSES_ROOT에서 /.txt 찾기.txt에서 새로 만들기 > 키ShellNew 입력ShellNew에서 새로 만들기 > 이진값NullFile 입력
2024.12.14 -
Sencha panel안에 grid 2개를 수평으로 꽉꽉 채우기
layout: 'hbox'로 수평으로 grid 집어 넣기flex: 1로 width를 꽉꽉 채우기height: '100%'로 height를 꽉꽉 채우기Ext.application({ name: 'FullScreenGrids', launch: function () { Ext.create('Ext.container.Viewport', { layout: 'hbox', // Horizontal layout for grids items: [ { xtype: 'grid', title: 'Grid 1', flex: 1, // Gr..
2024.12.13 -
Sencha grid 변경 플래그 제거하기
Grid 변경 플래그 제거하기grid.getStore().each(record => { record.commit(); // Resets the dirty state});
2024.12.13 -
Javascript array 복사하기
const seriesOrigin = [].concat(chart.getSeries()); // Wrap in an array if not already const seriesClone = seriesOrigin.map(series => Ext.clone(series.getInitialConfig()));
2024.12.13 -
Sencha Ext.window.Window 팝업 띄우기
부모창의 chart 정보를 그대로 뿌려주기function showChartInPopup(chart) { // Clone the initial configuration of the chart const chartConfig = Ext.clone(chart.initialConfig); // Ensure the series configuration is correctly cloned const seriesOrigin = [].concat(chart.getSeries()); // Wrap in an array if not already const seriesClone = seriesOrigin.map(series => Ext.clone(series.getInitialConfig()))..
2024.12.13 -
Spring boot request header 정보 출력하기
Filter 사용415 에러 등이 발생했을 때, header값이 어떤 값이 들어왔는지 확인이 안될 때 사용하면 좋을 것 같음body는 한번 사용되면, 사라지기 때문에 ContentCachingRequestWrapper wrappedRequest로 받아서 별도 처리해야 함정상적으로 처리되면 body가 출력되지만, 에러가 발생하는 경우(415 등) body는 null값이 출력됨@Slf4j@Componentpublic class RequestLoggingFilter implements Filter { @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOExc..
2024.12.13