Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html
- 이클립스
- WebView
- Eclipse
- jsp
- scrollView
- MS-SQL
- decompiler
- 자바스크립트
- javascript
- Maven
- varags
- STS
- Apache Lucene
- asp.net
- 자바
- TextBox
- Web Service
- Bootstrap
- Redirect
- SpringSource Tool Suite
- 안드로이드
- MANTIS
- Java
- 웹뷰
- C#
- 웹 서비스
- MSsql
- Android
- 컬럼명
Archives
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
New Line in Textarea to be converted to <br/>
This will replace line breaks to HTML break tags. The different combinations are to cover the different browsers/systems and how line breaks are interpreted. $(this).val().replace(/\r\n|\r|\n/g," ")This will bring it back to new lines - also covering how different browsers interpret innerHTML. boxText.replace(/ /g,"\n"); [출처] New Line in Textarea to be converted to
Web/jQuery
2014. 5. 28. 17:32
실행시간에 TextView 스타일 변경
style.xml android:typeface를 지정해주지 않으면 시스템 기본 폰트를 따라감 코드 myTextView.setTextAppearance(getApplicationContext(), R.style.boldText); [출처] How to change a TextView's style at runtime
Mobile Programming/Android
2014. 5. 8. 17:17
RadioButton / CheckBox Custom UI 변경
1. selector 정의 2. 적용하기 android:button에 정의한 selector 설정
Mobile Programming/Android
2014. 4. 30. 15:56