Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm programming in ExtJS recently. I can understand the usage of config for components.
But, when someone says to make a custom class by extending existing class to add additional functionality, I get totally confused.
So, my question is -
Is there any tutorial / site that explains the source code and it's meaning and how to customize it to our own implementation ?
Thanks
Sencha has good tutorials for ExtJS. They can all be found here.
They also have tutorials that define programming concepts. The specific one you mentioned that describes "custom classes" to create your own Javascript objects in ExtjS is this one.
There are many others in the "Concepts" category of the first linked page above which I found very helpful if you are going to be doing much with ExtJS.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last month.
Improve this question
What's wrong with me?
I have learnt React.js for 6 months. It have a lot of chapters that we need to learn and I also lost my way. Can u drop your experiences with React.js step by step. I really need your advice, please!
Follow the official tutorial found on their website. It features making a basic tic-tac-toe game using React while explaining the core concepts. In my opinion it is a much better way for understanding what React does best and how you can use it effectively.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there a way to get Documentation offline and searchable? For example for Java I have done this to get Java doc offline.
Off-Line Java API Documentation in Eclipse?
But is there a way that I can make this searchable? Because I am just starting so when I am to look for a Java Map for example. I don't know if its under java.lang or java.util...etc So it makes looking for specific doc extremely hard.
Thanks
After some digging
I found this https://zealdocs.org/ and https://kapeli.com/dash
The beauty of this is this is not only for java but for other languages such as javascript, angularjs, swift...etc
=D Happy coding
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm just curious, which JS framework Google Keep use? I can't find any mention about that.
I can't say 100% what they use since (to my knowledge) it isn't exactly out there; but you can look into other libraries which achieve very similar layouts like: Masonry, Isotope, Salvattore, etc... There is a good chance Google is either extending functionality from that, or using it themselves.
Also to add to this question, look into the stackoverflow question I found from another user: Is there a Google Keep API?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any screencasts that would dive deeply in writing testable JavaScript code?
Also explaining practices, tools, etc.
Preferably something well polished and presented as PeepCode's ones.
Have a look at this video from NDC 2010. It might not cover all your requirements but it was a good starting point for me.
I found that PeopCode's Backbone screencast series to be a good one.
It does indeed show how you can do unit-testing apart from other stuff.
After this question was posted, there was a talk about writing testable JavaScript at Full Frontal 2012.
The author also wrote the #1 google hit: Writing Testable JavaScript · An A List Apart Article.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I'm specifically looking for a framework written using a coding style that is using a prototype based OO style (that is, an OO style that relies on cloning rather than subclassing when instantiating objects). Has/is anyone writing such a framework?
Use the dhtml library reference to find the source code for projects like dynapi or activewidgets, which were written prior to the current trends.