본문 바로가기

잡단한것들/코딩연습장

(23)
AxBoot 참고 form다루기 ax5ui.axisj.com/ax5ui-binder/demo/index.html ax5ui / ax5ui-binder : basic ax5ui.axisj.com 그리드 api.axboot.com/front-end/grid-paging.html 그리드 페이징 · ax-boot-document api.axboot.com 공통코드관리 dodo-it.tistory.com/42 Axboot 신규화면 만들기 4 - Detail 내역 컬럼 콤보박스 만들기(DB연동) 앞에 "제품정보"에서 "원산지"항목을 DB공통코드와 연동하여 콤보박스로 만드는 방법에 대해 설명하겠음. 1. 공토통코드관리에 원산지 추가 - 아래 이미지와 같이 한국,미국,일본 원산지 항목을 dodo-it.tistory.com
문자열 더하기 function text(i) { let newText = 'hello'; newText += i return console.log(newText)} text('world');
jQuery 오랜만에 쓰려니깐 기억 안나네 $(function () { $('.row').click(function () { $('#wrap').css('backgroundColor', 'blue') }) })
.edtiorconfig root = true # All files [*] charset = utf-8 end_of_line = lf # Indentation and spacing indent_style = space indent_size = 4 tab_width = 4 # New line preferences insert_final_newline = true # 후행 공백 제거 trim_trailing_whitespace = true # Markdown Files [*.md] trim_trailing_whitespace = false # Web Files [*.{htm,html,js,ts,tsx,vue}] indent_size = 4 # Css Files [*.{css,sass,scss,less,svg}] indent_size..
css 테두리 겹치기 꼼수 box-shadow: 2px 0 0 0 #888, 0 2px 0 0 #888, 2px 2px 0 0 #888, 2px 0 0 0 #888 inset, 0 2px 0 0 #888 inset;
스크롤 이벤트 https://ko.javascript.info/size-and-scroll-window Window sizes and scrolling ko.javascript.info - 브라우저 별로 값이 다르게 나올수 있므로 아래 함수를 사용해야되나봄 Math.max( document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.offsetHeight, document.body.clientHeight, document.documentElement.clientHeight ); 현재 높이 맨위가 아닌 맨아래에서 구하려면 scrollTop과 clientHeight를 ..
THE MOVIE DATABASE API활용하기 https://developers.themoviedb.org/3/getting-started/introduction API Docs Hosted API documentation for every OAS (Swagger) and RAML spec out there. Powered by Stoplight.io. Document, mock, test, and more, with the StopLight API Designer. developers.themoviedb.org axios를 활용하여 처리하기 let page = 1; const key = 키값; let output = ''; getData = async () => { const url = 'https://api.themoviedb.org/3/movi..