Monday, September 28th, 2009
If you modify records of an editable grid with paging and if you then page-out, your changes are lost. Well, they are not lost in fact unless you have set pruneModifiedRecords:true on the strore. The modifications are still available so we just need to apply them. Here is the code ...
Posted in Code Patterns | 4 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
var msg = "From inline function";
var result = (function(m) {
alert(m);
return "Result of inline function";
}(msg));
alert(result);
Posted in Code Patterns | 4 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) 2009, by Ing. Jozef Sakáloš
* @date 1. February 2009
* @version 0.1
* @revision ...
Posted in File Patters | 2 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
,items:(function(){
var items = [];
// populate items array
return items;
}).createDelegate(this)()
Posted in Code Patterns | 4 Comments »
Wednesday, April 2nd, 2008
var text = 'Deferred';
(function() {
alert(text);
}.defer(2000, this));
Posted in Code Patterns | No Comments »
Wednesday, April 2nd, 2008
[paypal-donation]
Posted in File Patters | 1 Comment »
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 »