- 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
40
www/extras/extjs/docs/output/AbstractSelectionModel.jss.html
vendored
Normal file
40
www/extras/extjs/docs/output/AbstractSelectionModel.jss.html
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
<html><head><title>AbstractSelectionModel.js</title><link rel="stylesheet" type="text/css" href="../resources/style.css" media="screen"/></head><body><h1>AbstractSelectionModel.js</h1><pre class="highlighted"><code><i>/**
|
||||
@class Ext.grid.AbstractSelectionModel
|
||||
@extends Ext.util.Observable
|
||||
@constructor
|
||||
*/</i>
|
||||
Ext.grid.AbstractSelectionModel = <b>function</b>(){
|
||||
<b>this</b>.locked = false;
|
||||
Ext.grid.AbstractSelectionModel.superclass.constructor.call(<b>this</b>);
|
||||
};
|
||||
|
||||
Ext.extend(Ext.grid.AbstractSelectionModel, Ext.util.Observable, {
|
||||
<i>/** @ignore Called by the grid automatically. Do not call directly. */</i>
|
||||
init : <b>function</b>(grid){
|
||||
<b>this</b>.grid = grid;
|
||||
<b>this</b>.initEvents();
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Lock the selections
|
||||
*/</i>
|
||||
lock : <b>function</b>(){
|
||||
<b>this</b>.locked = true;
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Unlock the selections
|
||||
*/</i>
|
||||
unlock : <b>function</b>(){
|
||||
<b>this</b>.locked = false;
|
||||
},
|
||||
|
||||
<i>/**
|
||||
* Returns true <b>if</b> the selections are locked
|
||||
* @<b>return</b> {Boolean}
|
||||
*/</i>
|
||||
isLocked : <b>function</b>(){
|
||||
<b>return</b> this.locked;
|
||||
}
|
||||
});</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