Study/ASP.NET MVC & Core2011. 3. 23. 09:07
ASP.NET 온라인 컨퍼런스

http://www.mvcconf.com/
Posted by 굥쓰
Study/Ext JS2011. 3. 22. 16:23
소스와 함께 미리보기가 지원되어
폼 디자인이나 컨트롤 기본 사용법 파악 할 때 도움 될듯 싶네요

개발은 백문이 불여 일타 라고 하지요. 하지만 UI 나 UX에 자신 있는 개발자가 아닌 이상
EXT JS를 가지고 UI 설계 하는 것은 한계가 있는 것이 대부분의 개발자 아닐까요 ㅋ

아래 사이트들은 이런 고민을 조금은 해결해 주는 유용한 자료가 아닌가 싶습니다.

http://www.java2s.com/Code/JavaScript/Ext-JS/CatalogExt-JS.htm

http://examples.extjs.eu/
Posted by 굥쓰
Study/Ext JS2011. 3. 22. 16:12
Posted by 굥쓰
Study/Tip & Tech2011. 3. 22. 13:11

IntelliSense 코드 조각은 이미 만들어진 코드 조각을 프로젝트에 삽입할 수 있는 방법을 제공합니다. 이 단원에는 IntelliSense 코드 조각을 만들고 사용하며 관리하는 방법을 설명하는 항목이 포함되어 있습니다.


http://msdn.microsoft.com/ko-kr/library/ms165392.aspx
Posted by 굥쓰
Study/Ext JS2011. 3. 22. 10:02
Objective
 
Intended resulting IconCombo

Let's create an extension of Ext.form.Combobox that will display icons in front of texts. Such combo could be useful, for example, for selection of countries when we'd have the country flag followed by the country name.

Let's give our extension name Ext.ux.IconCombo.

 

http://www.sencha.com/learn/Tutorial:Extending_Ext_Class
Posted by 굥쓰
Study/Ext JS2011. 3. 20. 00:38

The Ext framework is built using object-oriented (OO) concepts common to other languages like C#, Java, etc., but not common to traditional JavaScript development. If you're used to the hodgepodge of global functions and variables common to other JavaScript libraries/code snippets, development with Ext will require a different mindset. It might seem difficult at first, but the payoff will be well worth the effort.

If you are unfamiliar with OO concepts or how they are applied to JavaScript, you might first begin by reading through some OO JavaScript resources. Of course, Ext itself is also an excellent template for how to develop OO JavaScript, so don't be afraid to dive into the Ext code and see how it does things!


http://www.sencha.com/learn/Manual:Intro

Posted by 굥쓰
Study/Ext JS2011. 3. 20. 00:30
Posted by 굥쓰
Study/Ext JS2011. 3. 19. 23:09

Summary: 이 튜토리얼은 당신이 올바르게 어플리케이션을 만드는데 도움을 줍니다.

http://www.sencha.com/learn/Tutorial:Application_Layout_for_Beginners_(Korean)

Posted by 굥쓰
Study/Ext JS2011. 3. 19. 21:01

1. Ext.EventManager

Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides several useful events directly. See Ext.EventObject for more details on normalized event objects.

This class is a singleton and cannot be created directly.

1) onDocumentReady
 /**
         * Adds a listener to be notified when the document is ready (before onload and before images are loaded). Can be
         * accessed shorthanded as Ext.onReady().
         * @param {Function} fn The method the event invokes.
         * @param {Object} scope (optional) The scope (
this reference) in which the handler function executes. Defaults to the browser window.
         * @param {boolean} options (optional) Options object as passed to {@link Ext.Element#addListener}. It is recommended that the options
         *
{single: true} be used so that the handler is removed on first invocation.
*/

onDocumentReadyFunction fn[Object scope][boolean options] ) : void
Adds a listener to be notified when the document is ready (before onload and before images are loaded).
사용 예>

Ext.EventManager.onDocumentReady(BasicInfo_Main.init, BasicInfo_Main, true); 






 
Posted by 굥쓰
카테고리 없음2011. 3. 16. 10:45

#define을 C#에서 사용하기
http://chaoskcuf.com/189

디버그 모드 릴리즈 모드 활용
http://kojaedoo.tistory.com/452

Posted by 굥쓰