Creating development with Ext JS fast

Ext JS is a good infrastructure for the web interface, but I found that building and building material is time consuming and painfully slow.

This may be a common problem when working with JavaScript, but is there any way anyone can speed things up?

What can i use? Better IDE with good JavaScript support? GUI designers? Code Generators?

I need a way to speed up common things, like building meshes and shapes, for example, but still let me do complex things, like creating custom components easily.

I am using ASP.NET MVC. At first, Coolite seems nice, but I feel like I will have problems creating any custom components later.

+4
source share
7 answers

There is always Ext GWT that allows you to use the Eclipse tool (and all the benefits that it gives you, such as refactoring, quick navigation code, etc.) to build your Ext / JavaScript application.

+2
source

When you download the ExtJs library, you will find many sample applications for common requirements, such as the Grid panel, forms, form elements, etc.

Regarding the IDE, you won't find mature productive tools, but check out the link below and want it to help you http://www.extjs.com/blog/2008/02/01/ides-plugins-and-tools- for-ext-js-20 /

But if you really want to develop custom components, you need to go through the knowledge, begin to approach the examples of applications that come with ExtJs.

+1
source

If you want to learn faster, practice until you understand how it works and how to get it to do what you want. If you are just starting out, why expect to be able to work as fast as you when you work on something you are familiar with?

+1
source

Things I use to make ExtJS less painful

  • Chrome, for him - developer tools or Firefox with Firebug.
  • snipMate: snippets for Vim, so I can quickly create boiler plate code for classes.
  • JSLint as a command line tool. Especially useful for detecting rogue commas.
  • Sencha Forums.
  • ExtJS IRC chat (server: irc.freenode.net Room: #extjs).
  • API documentation.
  • Examples of Sencha and Saki ExtJS.
  • Beer.
+1
source

ExtJS is building a constructor to know correctly, so you can look to the future, the only problem, I think, will not be free.

you can see a video demonstration there , from the release date, I think this is due to the first quarter of this year.

0
source

I say, study the framework. But for application development, I use IntelliJ IDEA, which has partial code completion, etc. It costs money though.

0
source

As soon as you have some practice and understanding of how ExtJS works, you will get faster. Using the examples for reference and creating my application in small parts, I became much better (and faster) to develop material using ExtJS. A great way to get started is to find an example (or two) of the kind of actions you need and modify (or combine) them to see how they work together.

0
source

Source: https://habr.com/ru/post/1300252/


All Articles