Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ProgressBarPager.html
diff --git a/docs/source/ProgressBarPager.html b/docs/source/ProgressBarPager.html
deleted file mode 100644 (file)
index 9e5ed3b..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-<html>
-<head>
-  <title>The source code</title>
-    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
-    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
-</head>
-<body  onload="prettyPrint();">
-    <pre class="prettyprint lang-js"><div id="cls-Ext.ux.ProgressBarPager"></div>/**
-* @class Ext.ux.ProgressBarPager
-* @extends Object 
-* Plugin (ptype = 'tabclosemenu') for displaying a progressbar inside of a paging toolbar instead of plain text
-* 
-* @ptype progressbarpager 
-* @constructor
-* Create a new ItemSelector
-* @param {Object} config Configuration options
-* @xtype itemselector 
-*/
-Ext.ux.ProgressBarPager  = Ext.extend(Object, {
-       <div id="cfg-Ext.ux.ProgressBarPager-progBarWidth"></div>/**
-       * @cfg {Integer} progBarWidth
-       * <p>The default progress bar width.  Default is 225.</p>
-       */
-       progBarWidth   : 225,
-       <div id="cfg-Ext.ux.ProgressBarPager-defaultText"></div>/**
-       * @cfg {String} defaultText
-       * <p>The text to display while the store is loading.  Default is 'Loading...'</p>
-       */
-       defaultText    : 'Loading...',
-       <div id="cfg-Ext.ux.ProgressBarPager-defaultAnimCfg"></div>/**
-       * @cfg {Object} defaultAnimCfg 
-       * <p>A {@link Ext.Fx Ext.Fx} configuration object.  Default is  { duration : 1, easing : 'bounceOut' }.</p>
-       */
-       defaultAnimCfg : {
-               duration   : 1,
-               easing     : 'bounceOut'        
-       },                                                                                                
-       constructor : function(config) {
-               if (config) {
-                       Ext.apply(this, config);
-               }
-       },
-       //public
-       init : function (parent) {
-        
-        if(parent.displayInfo){
-            this.parent = parent;
-            var ind  = parent.items.indexOf(parent.displayItem);
-            parent.remove(parent.displayItem, true);
-            this.progressBar = new Ext.ProgressBar({
-                text    : this.defaultText,
-                width   : this.progBarWidth,
-                animate :  this.defaultAnimCfg
-            });                 
-           
-            parent.displayItem = this.progressBar;
-            
-            parent.add(parent.displayItem); 
-            parent.doLayout();
-            Ext.apply(parent, this.parentOverrides);        
-            
-            this.progressBar.on('render', function(pb) {
-                pb.mon(pb.getEl().applyStyles('cursor:pointer'), 'click', this.handleProgressBarClick, this);
-            }, this, {single: true});
-                        
-        }
-          
-    },
-       // private
-       // This method handles the click for the progress bar
-       handleProgressBarClick : function(e){
-               var parent = this.parent;
-               var displayItem = parent.displayItem;
-               
-               var box = this.progressBar.getBox();
-               var xy = e.getXY();
-               var position = xy[0]-box.x;
-               var pages = Math.ceil(parent.store.getTotalCount()/parent.pageSize);
-               
-               var newpage = Math.ceil(position/(displayItem.width/pages));
-               parent.changePage(newpage);
-       },
-       
-       // private, overriddes
-       parentOverrides  : {
-               // private
-               // This method updates the information via the progress bar.
-               updateInfo : function(){
-                       if(this.displayItem){
-                               var count   = this.store.getCount();
-                               var pgData  = this.getPageData();
-                               var pageNum = this.readPage(pgData);
-                               
-                               var msg    = count == 0 ?
-                                       this.emptyMsg :
-                                       String.format(
-                                               this.displayMsg,
-                                               this.cursor+1, this.cursor+count, this.store.getTotalCount()
-                                       );
-                                       
-                               pageNum = pgData.activePage; ;  
-                               
-                               var pct = pageNum / pgData.pages;       
-                               
-                               this.displayItem.updateProgress(pct, msg, this.animate || this.defaultAnimConfig);
-                       }
-               }
-       }
-});
-Ext.preg('progressbarpager', Ext.ux.ProgressBarPager);
-
-</pre>
-</body>
-</html>
\ No newline at end of file