git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git]
/
docs
/
source
/
Checkbox.html
diff --git
a/docs/source/Checkbox.html
b/docs/source/Checkbox.html
index
1bb0f1b
..
d7afa1a
100644
(file)
--- a/
docs/source/Checkbox.html
+++ b/
docs/source/Checkbox.html
@@
-1,5
+1,6
@@
<html>
\r
<head>
\r
<html>
\r
<head>
\r
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
<title>The source code</title>
\r
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
<title>The source code</title>
\r
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
@@
-79,18
+80,11
@@
Ext.form.Checkbox = Ext.extend(Ext.form.Field, {
// private
initEvents : function(){
Ext.form.Checkbox.superclass.initEvents.call(this);
// private
initEvents : function(){
Ext.form.Checkbox.superclass.initEvents.call(this);
- this.mon(this.el, 'click', this.onClick, this);
- this.mon(this.el, 'change', this.onClick, this);
- },
-
- // private
- getResizeEl : function(){
- return this.wrap;
- },
-
- // private
- getPositionEl : function(){
- return this.wrap;
+ this.mon(this.el, {
+ scope: this,
+ click: this.onClick,
+ change: this.onClick
+ });
},
<div id="method-Ext.form.Checkbox-markInvalid"></div>/**
},
<div id="method-Ext.form.Checkbox-markInvalid"></div>/**
@@
-121,6
+115,14
@@
Ext.form.Checkbox = Ext.extend(Ext.form.Field, {
}else{
this.checked = this.el.dom.checked;
}
}else{
this.checked = this.el.dom.checked;
}
+ // Need to repaint for IE, otherwise positioning is broken
+ if(Ext.isIE){
+ this.wrap.repaint();
+ }
+ this.resizeEl = this.positionEl = this.wrap;
+ if(Ext.isEmpty(this.boxLabel)){
+ this.el.addClass('x-form-check-nolabel');
+ }
},
// private
},
// private
@@
-142,7
+144,7
@@
Ext.form.Checkbox = Ext.extend(Ext.form.Field, {
if(this.rendered){
return this.el.dom.checked;
}
if(this.rendered){
return this.el.dom.checked;
}
- return
false
;
+ return
this.checked
;
},
// private
},
// private