I was discussing with my colleagues the correct naming conventions for classes, variables and objects etc within ExtJS 4, but we all had differing views.

Is there an "official" stance on this?

link|improve this question
feedback

4 Answers

up vote 2 down vote accepted

I recently attended an Ext.js 4 training course (delivered by Sencha) and their advice was the following:

  • Top-level namespaces and the actual class names should be Camel Cased. everything else should be in lowercase.
  • Acronyms should also be camel cased
  • Do not use underscores, hyphens an any other non-alphanumerical characters

So Hugh is pretty much on the money

link|improve this answer
feedback

Official, I'm not sure, but in my opinion..

  • Root namespaces and constructors are UpperCamelCase
  • Sub-namespaces, styles, events and xtypes are lowercase
  • Methods, attributes and variables are lowerCamelCase
link|improve this answer
feedback

There absolutely is an official stance. It is outline in section 2 of the Class System guide. Here is the link: http://docs.sencha.com/ext-js/4-0/#!/guide/class_system

link|improve this answer
feedback

It's preference, really. What Hugh said are good guidelines, but I actually prefer namespaces to be in ALL CAPS, but our apps have fairly short namespaces so it doesn't look ridiculous.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.