일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- rust 기초
- ethers typescript
- 머신러닝기초
- git rebase
- redux toolkit 설명
- 계정추상화
- 러스트 기초 학습
- cloud hsm 사용하기
- SBT표준
- Vue
- 체인의정석
- erc4337 contract
- cloud hsm 서명
- redux 기초
- 오블완
- ethers websocket
- ethers v6
- 스마트컨트렉트 예약어 함수이름 중복
- 스마트 컨트렉트 함수이름 중복
- ethers type
- ambiguous function description
- Vue.js
- erc4337
- 컨트렉트 동일한 함수이름 호출
- 티스토리챌린지
- cloud hsm
- 스마트컨트렉트 함수이름 중복 호출
- vue기초
- 러스트 기초
- 러스트기초
Archives
- Today
- Total
목록jsgrid (1)
체인의정석

js grid 에서 rowClick 설정 값을 쓰면 js grid의 한 행을 클릭했을 때 작동할 함수를 쓸 수 있다. rowClick: function(args) { console.log(args) console.log(args.item.demand_idx) sendurl(args.item.demand_idx); }, rowClick안에 들어오는 args값을 콘솔로그로 찍어보면 js grid에 있는 모든 열값을 가져올 수 있다. 여기서 인덱스에 해당하는 정보를 가져온 뒤 이를 통하여 링크로 연결해주는 sendurl함수를 만들어 준다. function sendurl(didx){ location.href = "/techdemand_details?didx=" + didx; }; location.href를 통하..
개발
2020. 8. 20. 13:56