본문 바로가기

분류 전체보기175

You need to use a Theme.AppCompat theme (or descendant) with this activity android error :You need to use a Theme.AppCompat theme (or descendant) with this activity 2014. 8. 24.
ASP.NET MVC Grid Table ASP.NET MVC4 @Html 확장메서드 Grid Table public static MvcHtmlString Table(this HtmlHelper htmlHelper, string id, IEnumerable sorece, bool isSubGridDisplay = false) { if (sorece == null || sorece.Count() < 1) { string table = "데이터가 없습니다."; return MvcHtmlString.Create(table); } PropertyInfo[] propertyinfos; propertyinfos = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance); List tabl.. 2014. 7. 29.
Solar system texture map resources Solar system texture map resources http://planetpixelemporium.com/planets.html NASAhttp://www.nasa.gov/multimedia/3d_resources/images.html 2014. 6. 17.
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.