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 굥쓰