본문 바로가기

개발110

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. 5. 14.
this bundle is invalid. apps that include an arm64 architecture... xcode 빌드시 아래와 같은 오류 해결 this bundle is invalid. apps that include an arm64 architecture cannot have MinimumOSVerion set to less than '5.1.1' 2014. 4. 19.
kendo ui grid dropdownlist 컬럼 만들기 kendo ui grid dropdownlist column 설정 //column { field: "INACTIVE", title: "INACTIVE", width: 50, editor:aiDropdownEditor } //datasource function aiDropdownEditor(container, options) { $(' 2014. 4. 17.
gitignore 추가하기 gitignore 추가하기 $ git rm -r --cached .$ git add .$ git commit -m "add gitignore file” 2014. 4. 8.
std::__1::basic_string<char, std::__1::char_traits<char> linkerror xcode link error std::__1::basic_string 2014. 4. 4.
무료 이미지 사용하기 무료 이미지 사용하기요즘은 블로그에 이미지 하나를 올려도 저작권을 반드시 체크해서 올려야지 안심할 수 있다.물론 내 이미지 올린다면야 상관없지만.. 넘의것 막 퍼오다가는 문제가 될 수 있다. 그래서, 공짜로 사용할 수 있는 이미지를 찾아보자..아래 사이트는 무료 이미지를 제공해 준다. http://imagebase.net/ http://publicdomainvectors.org/ 좋은 이미지들이 많이 있다~ ㅎㅎ 좋다. 구글에서도 찾을 수 있다. 이미지검색으로 이미지를 검색하고검색도구-> 사용권한을 적절히 조절해 검색하면 쓸만한 이미지를 무료로도 사용할 수 있다. 좋은 하루 되시길~ 2014. 2. 13.