- Replaced color picker form control with a more robust version.
This commit is contained in:
parent
6fe068e42d
commit
6e0470771e
1193 changed files with 342 additions and 223 deletions
598
www/extras/extjs/docs/output/Grid.jss.html
vendored
Normal file
598
www/extras/extjs/docs/output/Grid.jss.html
vendored
Normal file
|
|
@ -0,0 +1,598 @@
|
|||
<html><head><title>Grid.js</title><link rel="stylesheet" type="text/css" href="../resources/style.css" media="screen"/></head><body><h1>Grid.js</h1><pre class="highlighted"><code><i>/**
|
||||
* @class Ext.grid.Grid
|
||||
* @extends Ext.util.Observable
|
||||
* This class represents the primary interface of a component based grid control.
|
||||
* <br><br>Usage:<pre><code>
|
||||
<b>var</b> grid = <b>new</b> Ext.grid.Grid("my-container-id", {
|
||||
ds: myDataStore,
|
||||
cm: myColModel,
|
||||
selModel: mySelectionModel,
|
||||
autoSizeColumns: true,
|
||||
monitorWindowResize: false,
|
||||
trackMouseOver: true
|
||||
});
|
||||
<i>// set any options</i>
|
||||
grid.render();
|
||||
* </code></pre>
|
||||
* <b>Common Problems:</b><br/>
|
||||
* - Grid does not resize properly when going smaller: Setting overflow hidden on the container
|
||||
* element will correct <b>this</b><br/>
|
||||
* - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
|
||||
* dimensions. The grid adapts to your container's size, <b>if</b> your container has no size defined then the results
|
||||
* are unpredictable.<br/>
|
||||
* - Do not render the grid into an element <b>with</b> display:none. Try using visibility:hidden. Otherwise there is no way <b>for</b> the
|
||||
* grid to calculate dimensions/offsets.<br/>
|
||||
* @constructor
|
||||
* @param {String/HTMLElement/Ext.Element} container The element into which <b>this</b> grid will be rendered -
|
||||
* The container MUST have some type of size defined <b>for</b> the grid to fill. The container will be
|
||||
* automatically set to position relative <b>if</b> it isn't already.
|
||||
* @param {Object} config A config object that sets properties on <b>this</b> grid.
|
||||
*/</i>
|
||||
Ext.grid.Grid = <b>function</b>(container, config){
|
||||
<i>// initialize the container</i>
|
||||
<b>this</b>.container = Ext.get(container);
|
||||
<b>this</b>.container.update("");
|
||||
<b>this</b>.container.setStyle("overflow", "hidden");
|
||||
<b>this</b>.container.addClass('x-grid-container');
|
||||
|
||||
<b>this</b>.id = <b>this</b>.container.id;
|
||||
|
||||
Ext.apply(<b>this</b>, config);
|
||||
<i>// check and correct shorthanded configs</i>
|
||||
<b>if</b>(this.ds){
|
||||
<b>this</b>.dataSource = <b>this</b>.ds;
|
||||
<b>delete</b> this.ds;
|
||||
}
|
||||
<b>if</b>(this.cm){
|
||||
<b>this</b>.colModel = <b>this</b>.cm;
|
||||
<b>delete</b> this.cm;
|
||||
}
|
||||
<b>if</b>(this.sm){
|
||||
<b>this</b>.selModel = <b>this</b>.sm;
|
||||
<b>delete</b> this.sm;
|
||||
}
|
||||
|
||||
<b>if</b>(this.width){
|
||||
<b>this</b>.container.setWidth(<b>this</b>.width);
|
||||
}
|
||||
|
||||
<b>if</b>(this.height){
|
||||
<b>this</b>.container.setHeight(<b>this</b>.height);
|
||||
}
|
||||
<i>/** @private */</i>
|
||||
<b>this</b>.addEvents({
|
||||
<i>// raw events</i>
|
||||
<i>/**
|
||||
* @event click
|
||||
* The raw click event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"click" : true,
|
||||
<i>/**
|
||||
* @event dblclick
|
||||
* The raw dblclick event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"dblclick" : true,
|
||||
<i>/**
|
||||
* @event contextmenu
|
||||
* The raw contextmenu event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"contextmenu" : true,
|
||||
<i>/**
|
||||
* @event mousedown
|
||||
* The raw mousedown event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"mousedown" : true,
|
||||
<i>/**
|
||||
* @event mouseup
|
||||
* The raw mouseup event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"mouseup" : true,
|
||||
<i>/**
|
||||
* @event mouseover
|
||||
* The raw mouseover event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"mouseover" : true,
|
||||
<i>/**
|
||||
* @event mouseout
|
||||
* The raw mouseout event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"mouseout" : true,
|
||||
<i>/**
|
||||
* @event keypress
|
||||
* The raw keypress event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"keypress" : true,
|
||||
<i>/**
|
||||
* @event keydown
|
||||
* The raw keydown event <b>for</b> the entire grid.
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"keydown" : true,
|
||||
|
||||
<i>// custom events</i>
|
||||
|
||||
<i>/**
|
||||
* @event cellclick
|
||||
* Fires when a cell is clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Number} columnIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"cellclick" : true,
|
||||
<i>/**
|
||||
* @event celldblclick
|
||||
* Fires when a cell is double clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Number} columnIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"celldblclick" : true,
|
||||
<i>/**
|
||||
* @event rowclick
|
||||
* Fires when a row is clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"rowclick" : true,
|
||||
<i>/**
|
||||
* @event rowdblclick
|
||||
* Fires when a row is double clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"rowdblclick" : true,
|
||||
<i>/**
|
||||
* @event headerclick
|
||||
* Fires when a header is clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} columnIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"headerclick" : true,
|
||||
<i>/**
|
||||
* @event headerdblclick
|
||||
* Fires when a header cell is double clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Number} columnIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"headerdblclick" : true,
|
||||
<i>/**
|
||||
* @event rowcontextmenu
|
||||
* Fires when a row is right clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"rowcontextmenu" : true,
|
||||
<i>/**
|
||||
* @event cellcontextmenu
|
||||
* Fires when a cell is right clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} rowIndex
|
||||
* @param {Number} cellIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"cellcontextmenu" : true,
|
||||
<i>/**
|
||||
* @event headercontextmenu
|
||||
* Fires when a header is right clicked
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Number} columnIndex
|
||||
* @param {Ext.EventObject} e
|
||||
*/</i>
|
||||
"headercontextmenu" : true,
|
||||
<i>/**
|
||||
* @event bodyscroll
|
||||
* Fires when the body element is scrolled
|
||||
* @param {Number} scrollLeft
|
||||
* @param {Number} scrollTop
|
||||
*/</i>
|
||||
"bodyscroll" : true,
|
||||
<i>/**
|
||||
* @event columnresize
|
||||
* Fires when the user resizes a column
|
||||
* @param {Number} columnIndex
|
||||
* @param {Number} newSize
|
||||
*/</i>
|
||||
"columnresize" : true,
|
||||
<i>/**
|
||||
* @event columnmove
|
||||
* Fires when the user moves a column
|
||||
* @param {Number} oldIndex
|
||||
* @param {Number} newIndex
|
||||
*/</i>
|
||||
"columnmove" : true,
|
||||
<i>/**
|
||||
* @event startdrag
|
||||
* Fires when row(s) start being dragged
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"startdrag" : true,
|
||||
<i>/**
|
||||
* @event enddrag
|
||||
* Fires when a drag operation is complete
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"enddrag" : true,
|
||||
<i>/**
|
||||
* @event dragdrop
|
||||
* Fires when dragged row(s) are dropped on a valid DD target
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {String} targetId The target drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"dragdrop" : true,
|
||||
<i>/**
|
||||
* @event dragover
|
||||
* Fires <b>while</b> row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {String} targetId The target drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"dragover" : true,
|
||||
<i>/**
|
||||
* @event dragenter
|
||||
* Fires when the dragged row(s) first cross another DD target <b>while</b> being dragged
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {String} targetId The target drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"dragenter" : true,
|
||||
<i>/**
|
||||
* @event dragout
|
||||
* Fires when the dragged row(s) leave another DD target <b>while</b> being dragged
|
||||
* @param {Grid} <b>this</b>
|
||||
* @param {Ext.GridDD} dd The drag drop object
|
||||
* @param {String} targetId The target drag drop object
|
||||
* @param {event} e The raw browser event
|
||||
*/</i>
|
||||
"dragout" : true
|
||||
});
|
||||
|
||||
Ext.grid.Grid.superclass.constructor.call(<b>this</b>);
|
||||
};
|
||||
Ext.extend(Ext.grid.Grid, Ext.util.Observable, {
|
||||
<i>/**
|
||||
* @cfg {Number} The minimum width a column can be resized to. Defaults to 25.
|
||||
*/</i>
|
||||
minColumnWidth : 25,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to automatically resize the columns to fit their content
|
||||
* <b>on initial render.</b> It is more efficient to explicitly size the columns
|
||||
* through the ColumnModel's {@link Ext.grid.ColumnModel#width} config option.
|
||||
*/</i>
|
||||
autoSizeColumns : false,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to measure headers <b>with</b> column data when auto sizing columns.
|
||||
*/</i>
|
||||
autoSizeHeaders : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to autoSize the grid when the window resizes. Defaults to true.
|
||||
*/</i>
|
||||
monitorWindowResize : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
|
||||
* rows measured to get a columns size - defaults to 0 (all rows).
|
||||
*/</i>
|
||||
maxRowsToMeasure : 0,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to highlight rows when the mouse is over. Default is false.
|
||||
*/</i>
|
||||
trackMouseOver : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to enable drag and drop of rows.
|
||||
*/</i>
|
||||
enableDragDrop : false,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to enable drag and drop reorder of columns.
|
||||
*/</i>
|
||||
enableColumnMove : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to enable hiding of columns <b>with</b> the header context menu.
|
||||
*/</i>
|
||||
enableColumnHide : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to manually sync row heights across locked and not locked rows.
|
||||
*/</i>
|
||||
enableRowHeightSync : false,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to stripe the rows. Default is true.
|
||||
*/</i>
|
||||
stripeRows : true,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Boolean} True to fit the height of the grid container to the height of the data. Defaults to false.
|
||||
*/</i>
|
||||
autoHeight : false,
|
||||
|
||||
<i>/**
|
||||
* @cfg {String} The id of a column <b>in</b> this grid that should expand to fill unused space.
|
||||
*/</i>
|
||||
autoExpandColumn : false,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Number} The minimum width the autoExpandColumn can have (<b>if</b> enabled).
|
||||
* defaults to 50.
|
||||
*/</i>
|
||||
autoExpandMin : 50,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Number} The maximum width the autoExpandColumn can have (<b>if</b> enabled). Defaults to 1000.
|
||||
*/</i>
|
||||
autoExpandMax : 1000,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Object} The {@link Ext.grid.GridView} used by the grid. This can be set before a call to render().
|
||||
*/</i>
|
||||
view : null,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Object} A javascript RegExp defining tagNames
|
||||
* allowed to have text selection (Defaults to <code>/INPUT|TEXTAREA|SELECT/i</code>).
|
||||
*/</i>
|
||||
allowTextSelectionPattern : /INPUT|TEXTAREA|SELECT/i,
|
||||
|
||||
<i>/**
|
||||
* @cfg {Object} An {@link Ext.LoadMask} config or true to mask the grid <b>while</b> loading (defaults to false).
|
||||
*/</i>
|
||||
loadMask : false,
|
||||
|
||||
<i>// private</i>
|
||||
rendered : false,
|
||||
|
||||
<i>/**
|
||||
* Sets the maximum height of the grid - ignored <b>if</b> autoHeight is not on.
|
||||
* @type Number
|
||||
*/</i>
|
||||
<i>// holder</i>
|
||||
<i>/***
|
||||
* Called once after all setup has been completed and the grid is ready to be rendered.
|
||||
* @<b>return</b> {Ext.grid.Grid} <b>this</b>
|
||||
*/</i>
|
||||
render : <b>function</b>(){
|
||||
<b>var</b> c = <b>this</b>.container;
|
||||
<i>// try to detect autoHeight/width mode</i>
|
||||
<b>if</b>((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
|
||||
<b>this</b>.autoHeight = true;
|
||||
}
|
||||
<b>var</b> view = <b>this</b>.getView();
|
||||
view.init(<b>this</b>);
|
||||
|
||||
c.on("click", <b>this</b>.onClick, <b>this</b>);
|
||||
c.on("dblclick", <b>this</b>.onDblClick, <b>this</b>);
|
||||
c.on("contextmenu", <b>this</b>.onContextMenu, <b>this</b>);
|
||||
c.on("keydown", <b>this</b>.onKeyDown, <b>this</b>);
|
||||
|
||||
<b>this</b>.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
|
||||
|
||||
<b>this</b>.getSelectionModel().init(<b>this</b>);
|
||||
|
||||
view.render();
|
||||
|
||||
<b>if</b>(this.loadMask){
|
||||
<b>this</b>.loadMask = <b>new</b> Ext.LoadMask(<b>this</b>.container,
|
||||
Ext.apply({store:<b>this</b>.dataSource}, <b>this</b>.loadMask));
|
||||
}
|
||||
<b>this</b>.rendered = true;
|
||||
<b>return</b> this;
|
||||
},
|
||||
|
||||
reconfigure : <b>function</b>(dataSource, colModel){
|
||||
<b>if</b>(this.loadMask){
|
||||
<b>this</b>.loadMask.destroy();
|
||||
<b>this</b>.loadMask = <b>new</b> Ext.LoadMask(<b>this</b>.container,
|
||||
Ext.apply({store:dataSource}, <b>this</b>.loadMask));
|
||||
}
|
||||
<b>this</b>.view.bind(dataSource, colModel);
|
||||
<b>this</b>.dataSource = dataSource;
|
||||
<b>this</b>.colModel = colModel;
|
||||
<b>this</b>.view.refresh(true);
|
||||
},
|
||||
|
||||
onKeyDown : <b>function</b>(e){
|
||||
<b>this</b>.fireEvent("keydown", e);
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Destroy <b>this</b> grid.
|
||||
* @param {Boolean} removeEl True to remove the element
|
||||
*/</i>
|
||||
destroy : <b>function</b>(removeEl, keepListeners){
|
||||
<b>if</b>(this.loadMask){
|
||||
<b>this</b>.loadMask.destroy();
|
||||
}
|
||||
<b>var</b> c = <b>this</b>.container;
|
||||
c.removeAllListeners();
|
||||
<b>this</b>.view.destroy();
|
||||
<b>this</b>.colModel.purgeListeners();
|
||||
<b>if</b>(!keepListeners){
|
||||
<b>this</b>.purgeListeners();
|
||||
}
|
||||
c.update("");
|
||||
<b>if</b>(removeEl === true){
|
||||
c.remove();
|
||||
}
|
||||
},
|
||||
|
||||
<i>// private</i>
|
||||
processEvent : <b>function</b>(name, e){
|
||||
<b>this</b>.fireEvent(name, e);
|
||||
<b>var</b> t = e.getTarget();
|
||||
<b>var</b> v = <b>this</b>.view;
|
||||
<b>var</b> header = v.findHeaderIndex(t);
|
||||
<b>if</b>(header !== false){
|
||||
<b>this</b>.fireEvent("header" + name, <b>this</b>, header, e);
|
||||
}<b>else</b>{
|
||||
<b>var</b> row = v.findRowIndex(t);
|
||||
<b>var</b> cell = v.findCellIndex(t);
|
||||
<b>if</b>(row !== false){
|
||||
<b>this</b>.fireEvent("row" + name, <b>this</b>, row, e);
|
||||
<b>if</b>(cell !== false){
|
||||
<b>this</b>.fireEvent("cell" + name, <b>this</b>, row, cell, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
<i>// private</i>
|
||||
onClick : <b>function</b>(e){
|
||||
<b>this</b>.processEvent("click", e);
|
||||
},
|
||||
|
||||
<i>// private</i>
|
||||
onContextMenu : <b>function</b>(e, t){
|
||||
<b>this</b>.processEvent("contextmenu", e);
|
||||
},
|
||||
|
||||
<i>// private</i>
|
||||
onDblClick : <b>function</b>(e){
|
||||
<b>this</b>.processEvent("dblclick", e);
|
||||
},
|
||||
|
||||
walkCells : <b>function</b>(row, col, step, fn, scope){
|
||||
<b>var</b> cm = <b>this</b>.colModel, clen = cm.getColumnCount();
|
||||
<b>var</b> ds = <b>this</b>.dataSource, rlen = ds.getCount(), first = true;
|
||||
<b>if</b>(step < 0){
|
||||
<b>if</b>(col < 0){
|
||||
row--;
|
||||
first = false;
|
||||
}
|
||||
<b>while</b>(row >= 0){
|
||||
<b>if</b>(!first){
|
||||
col = clen-1;
|
||||
}
|
||||
first = false;
|
||||
<b>while</b>(col >= 0){
|
||||
<b>if</b>(fn.call(scope || <b>this</b>, row, col, cm) === true){
|
||||
<b>return</b> [row, col];
|
||||
}
|
||||
col--;
|
||||
}
|
||||
row--;
|
||||
}
|
||||
} <b>else</b> {
|
||||
<b>if</b>(col >= clen){
|
||||
row++;
|
||||
first = false;
|
||||
}
|
||||
<b>while</b>(row < rlen){
|
||||
<b>if</b>(!first){
|
||||
col = 0;
|
||||
}
|
||||
first = false;
|
||||
<b>while</b>(col < clen){
|
||||
<b>if</b>(fn.call(scope || <b>this</b>, row, col, cm) === true){
|
||||
<b>return</b> [row, col];
|
||||
}
|
||||
col++;
|
||||
}
|
||||
row++;
|
||||
}
|
||||
}
|
||||
<b>return</b> null;
|
||||
},
|
||||
|
||||
getSelections : <b>function</b>(){
|
||||
<b>return</b> this.selModel.getSelections();
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Causes the grid to manually recalculate its dimensions. Generally <b>this</b> is done automatically,
|
||||
* but <b>if</b> manual update is required <b>this</b> method will initiate it.
|
||||
*/</i>
|
||||
autoSize : <b>function</b>(){
|
||||
<b>if</b>(this.rendered){
|
||||
<b>this</b>.view.layout();
|
||||
<b>if</b>(this.view.adjustForScroll){
|
||||
<b>this</b>.view.adjustForScroll();
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
<i>// private <b>for</b> compatibility, overridden by editor grid</i>
|
||||
stopEditing : <b>function</b>(){},
|
||||
|
||||
<i>/**
|
||||
* Returns the grid's SelectionModel.
|
||||
* @<b>return</b> {SelectionModel}
|
||||
*/</i>
|
||||
getSelectionModel : <b>function</b>(){
|
||||
<b>if</b>(!<b>this</b>.selModel){
|
||||
<b>this</b>.selModel = <b>new</b> Ext.grid.RowSelectionModel();
|
||||
}
|
||||
<b>return</b> this.selModel;
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Returns the grid's DataSource.
|
||||
* @<b>return</b> {DataSource}
|
||||
*/</i>
|
||||
getDataSource : <b>function</b>(){
|
||||
<b>return</b> this.dataSource;
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Returns the grid's ColumnModel.
|
||||
* @<b>return</b> {ColumnModel}
|
||||
*/</i>
|
||||
getColumnModel : <b>function</b>(){
|
||||
<b>return</b> this.colModel;
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Returns the grid's GridView object.
|
||||
* @<b>return</b> {GridView}
|
||||
*/</i>
|
||||
getView : <b>function</b>(){
|
||||
<b>if</b>(!<b>this</b>.view){
|
||||
<b>this</b>.view = <b>new</b> Ext.grid.GridView();
|
||||
}
|
||||
<b>return</b> this.view;
|
||||
},
|
||||
<i>/**
|
||||
* Called to get grid's drag proxy text, by <b>default</b> returns <b>this</b>.ddText.
|
||||
* @<b>return</b> {String}
|
||||
*/</i>
|
||||
getDragDropText : <b>function</b>(){
|
||||
<b>var</b> count = <b>this</b>.selModel.getCount();
|
||||
<b>return</b> String.format(<b>this</b>.ddText, count, count == 1 ? '' : 's');
|
||||
}
|
||||
});
|
||||
<i>/**
|
||||
* Configures the text is the drag proxy (defaults to "%0 selected row(s)").
|
||||
* %0 is replaced <b>with</b> the number of selected rows.
|
||||
* @type String
|
||||
*/</i>
|
||||
Ext.grid.Grid.prototype.ddText = "{0} selected row{1}";</code></pre><hr><div style="font-size:10px;text-align:center;color:gray;">Ext - Copyright © 2006-2007 Ext JS, LLC<br />All rights reserved.</div>
|
||||
</body></html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue