Search Type: Posts; User: fins
Search: Search took 0.02 seconds.
-
21 Oct 2009 10:29 PM
- Replies
- 1
- Views
- 1,064
I hope Ext can supply the "Panel.prototype.setAnchor" method.
for example :
setAnchor : function(anchor){
this.anchorSpec=null;
this.anchor=anchor;
... -
17 Oct 2009 8:43 AM
- Replies
- 4
- Views
- 1,129
if you don't specify any ID for grid-colums, the first column head-cell's id will be "x-grid3-td-" , and when mouse over the first column-head, will make a script exception
-
13 Oct 2009 10:21 AM
- Replies
- 4
- Views
- 1,129
compile : function(){
var me = this,
sep = Ext.isGecko ? "+" : ",";
function fn(m, name){
name = "values['" + name + "']";
//... -
30 Sep 2009 5:53 PM
Jump to post Thread: [2.3+] the BUG of TabPanel.render() by fins
- Replies
- 1
- Views
- 1,390
the defaultValue of TabPanel.activeTab is null ,
but activeTab is Checked with "!== undefined" in render() method :
if(this.activeTab !== undefined){
var item =... -
30 Sep 2009 5:47 PM
- Replies
- 1
- Views
- 830
the encoding of output local-file is not UTF8
for example
ext-3.0+\src\locale\ext-lang-jp.js , ext-lang-zh_CN.js , ext-lang-zh_TW.js -
5 Sep 2009 9:47 AM
- Replies
- 3
- Views
- 893
bbar : {
xtype : 'paging',
pageSize: 10,
store: myStore
}
can not work.
and -
5 Sep 2009 9:45 AM
- Replies
- 6
- Views
- 3,899
sometimes the Datapicker maybe Destroied twice (in pop window) . i don't know why.
-
4 Sep 2009 7:22 AM
- Replies
- 6
- Views
- 3,899
the keyNav is NULL sometimes.
beforeDestroy : function() {
if(this.rendered){
this.keyNav.disable(); // throws NULL Exception
this.keyNav = null;
... -
4 Sep 2009 7:11 AM
- Replies
- 3
- Views
- 893
I hope ext can support this feature
-
4 Sep 2009 6:59 AM
- Replies
- 3
- Views
- 893
the code can not work:
var grid= new Ext.grid.GridPanel({
id : 'brandGrid',
store: myStore,
// ... ... -
14 Jul 2009 10:54 PM
- Replies
- 8
- Views
- 2,329
BoxComponent.js :
setIcon : function(icon){
if(icon && icon != ''){
iconEl.removeClass('x-hidden');
iconEl.replaceClass(iconCls, icon);
... -
14 Jul 2009 10:18 PM
- Replies
- 8
- Views
- 2,329
Button.js :
onClick : function(e){
if(e){
e.preventDefault();
}
if(e.button != 0){
return;
} -
14 Jul 2009 10:11 PM
- Replies
- 8
- Views
- 2,329
[2.3+]CellSelectionModel.js, needless ";"
handleMouseDown : function(g, row, cell, e){
if(e.button !== 0 || this.isLocked()){
return;
};
... -
14 Jul 2009 10:06 PM
- Replies
- 8
- Views
- 2,329
ColumnSplitDD.js :
handleMouseDown : function(e){
ev = Ext.EventObject.setEvent(e);
var t = this.fly(ev.getTarget());
if(t.hasClass("x-grid-split")){
... -
21 Apr 2009 6:44 PM
- Replies
- 2
- Views
- 1,302
the MessageBox size is incorrect in IE6:
-
15 Feb 2009 5:40 PM
Jump to post Thread: Documentation Bugs - Ext 2.x by fins
- Replies
- 677
- Views
- 252,727
the comment of config "enableDragDrop" maybe has a mistake.
now it's :
/**
* @cfg {Boolean} <p>enableDragDrop True to enable dragging of the selected rows of the GridPanel.</p>
...... -
12 Feb 2009 3:29 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
My english is very very ver~~~~~~~ poor !!!!
Maybe You can't understand Me , and So do I . tears... -
12 Feb 2009 3:26 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
I put the grid in the centerArea of viewport ( it's borderLayout),
when i collapse(or expend) the westArea of viewport.
the centerArea's width will be change.
I hope the grid can... -
12 Feb 2009 3:21 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
i hope the grid can autoExpand and autoShrink when resize it's parent .
like <table style="width:100%" > .... -
12 Feb 2009 3:13 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
why move my post to "Ext: Help " ?
you mean
"no scrollbar in IE6" is not a bug?
you mean
"gridView'width does not synchronize with grdiPanel'width" is not a bug ? -
12 Feb 2009 3:03 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
It's not "Viewport " it's "gridView"
viewport contains gridPanel
gridPanel contains gridView.
it's a bug !!!!!!!!!!!!!!!!!! -
12 Feb 2009 1:34 AM
- Replies
- 1
- Views
- 719
How to know Which Ext.component does one domElement belongs to?
and
How to know Which Ext.component does one Point(x,y) belongs to?
and
How to know Which domElement is one Ext.component's... -
12 Feb 2009 12:08 AM
Jump to post Thread: [2.2.1+] a bug about "resize grid" by fins
- Replies
- 9
- Views
- 1,567
viewport + GridPanel .
1 no scrollbar in IE6
2 when resize window , viewport & gridPanel will be resized. but the gridView isn't.
( in FF3 chrome opera )
For details, see the attachments... -
2 Feb 2009 11:01 PM
- Replies
- 31
- Views
- 19,317
You can see this bug via
click any cell in 4th(or 5th) column of examples/grid/edit-grid.html -
2 Feb 2009 10:38 PM
- Replies
- 31
- Views
- 19,317
When I click a cell of editable-grid, the gridBody will scroll to Left.
But the grid DOESN'T have any scrollBar ---- the grid just has tow columns, the gridBody's width is smaller than gridPanel's ....
Results 1 to 25 of 33
