|
API
objx - API Documentation
objx - API DocumentationCore objx methodsobjx comes with a few functions that are core to the platform. These will always be available within objx environments no matter what plugins you have included. It is possible for plugins to add capabilities to these core methods but they should never prevent the original method from functioning or operating in the expected way. For example, objx.type.js adds type conversion to the type() method - but does not stop type() from working in its own right. PropertiesProperties are items in the objx namespace that globally control the behaviour of the framework.
Instance methods (objx(object).)Instance methods are methods that are run on an instance of objx.
Static methods (objx.)Static methods are always available by directly making calls to them. These methods do not run against instances of objx.
What is the difference between instance and static methods?Is it that simple?The core objx platform is very simple focusing on the common core problems. Functionality is added by plugins. |