Archive for the ‘File Patters’ Category
Tuesday, September 21st, 2010
See also:
Writing a Big Application in Ext
Abstract classes with Ext JS
Factory Functions in Ext Extensions (Abstract Classes)
// vim: ts=4:sw=4:nu:fdc=2:nospell
/*global Ext:true, AbstractPanel:true */
/*jslint browser:true, laxbreak:true */
// create namespace
Ext.ns('AbstractPanel');
/**
* @class AbstractPanel
* @extends Ext.Panel
*
* AbstractPanel File Pattern
*
* @author Ing. Jozef Sakáloš
* @copyright (c) ...
Posted in File Patters | 9 Comments »
Tuesday, March 17th, 2009
You know, I'm not very big fan of factory functions, nevertheless, I'm aware of the fact that they may be necessary in some situations. Here is the file pattern that works (briefly tested).
Keep each factory function in a separate file name of which should be Namespace.Factory.functionName.js
// vim: ts=4:sw=4:nu:fdc=4:nospell
/*global Ext, MyNamespace ...
Posted in File Patters, Know-how | 3 Comments »
Friday, April 4th, 2008
/** vim: ts=4:sw=4:nu:fdc=4:nospell
*
* A CSS File
*
* @author Ing.Jozef Sakáloš
* @copyright (c) 2008, by Ing. Jozef Sakáloš
* @date 5. April 2008
* @version $Id$
*
* @license A CSS File is licensed under the terms ...
Posted in File Patters | 2 Comments »
Thursday, April 3rd, 2008
// vim: ts=4:sw=4:nu:fdc=4:nospell
/*global Ext, AnExtension */
/**
* @class AnExtension
* @extends Ext.Panel
*
* AnExtension description
*
* @author Ing. Jozef Sakáloš
* @copyright (c) 2010, by Ing. Jozef Sakáloš
* @date
* 11. March 2010
*
* @version ...
Posted in File Patters | 4 Comments »
Thursday, April 3rd, 2008
// vim: sw=4:ts=4:nu:nospell:fdc=4
/**
* A Plugin
*
* @author Ing. Jozef Sakáloš
* @copyright (c) 2008, by Ing. Jozef Sakáloš
* @date 3. April 2008
* @version $Id$
*
* @license plugin.js is licensed under the terms of the Open ...
Posted in File Patters | 2 Comments »
Wednesday, April 2nd, 2008
[paypal-donation]
Posted in File Patters | 2 Comments »
Wednesday, April 2nd, 2008
// vim: sw=4:ts=4:nu:nospell:fdc=4
/**
* An Application
*
* @author Ing. Jozef Sakáloš
* @copyright (c) 2008, by Ing. Jozef Sakáloš
* @date 2. April 2008
* @version $Id$
*
* @license application.js is licensed under the terms of the Open ...
Posted in File Patters | No Comments »
Wednesday, April 2nd, 2008
Application Title
Basic HTML Page
...
Posted in File Patters | 4 Comments »