전체 글 159

android studio compile error

이게 뭐하는 거냐 간만에 안드로이드 좀 할려고 android studio로 프로젝트좀 열었더니, 컴파일 오류가 나네 ㅠㅠ 괜히 업데이트 했네 ​​Error:Abnormal build process termination: Error: This Java instance does not support a 32-bit JVM. Please install the desired version. 이게뭐지? os가 맥64bit 여서 jdk도 64bit가 설치됐는데 ... jvm을 다시 설치해야돼나? ------ ----- ------- 음... 해결했음 ㅋㅋ 물론 다른 오류가 있어서 컴파일이 안되지만 일단 위 에러는 jdk 8 을 설치해서 해결 설치 후 android studio 에서 jdk location 을 수정해..

개발/Android 2015.12.08

Kendo grid에서 Textarea Editor를

Kendo grid에서 Textarea Editor를 사용해 보자 kendo grid 기본 텍스트에디터는 Textbox 다. 이때 Textarea 가 필요할때가 있는데editor를 생성해보자 // 컬럼 설정{ field: "Comment", title: "비고 (textarea)", width: 140, filterable: false, editor: textareaEditor} // textarea를 생성해줄 editor 함수function textareaEditor(container, options) { $('') .appendTo(container);}; 이렇게 설정하면 Textarea 에디터를 사용할 수 있다.

개발/기타 2014.05.14